ack/lang/cem/libcc.ansi/core/stdio/putw.c

21 lines
273 B
C
Raw Normal View History

1989-12-18 14:40:54 +00:00
/*
* putw - write an word on a stream
*/
1994-06-24 14:02:31 +00:00
/* $Id$ */
1989-12-18 14:40:54 +00:00
2018-06-21 20:33:47 +00:00
#include <stdio.h>
1989-12-18 14:40:54 +00:00
2018-06-21 20:33:47 +00:00
int putw(int w, register FILE* stream)
1989-12-18 14:40:54 +00:00
{
register int cnt = sizeof(int);
2018-06-21 20:33:47 +00:00
register char* p = (char*)&w;
1989-12-18 14:40:54 +00:00
2018-06-21 20:33:47 +00:00
while (cnt--)
{
1989-12-18 14:40:54 +00:00
putc(*p++, stream);
}
2018-06-21 20:33:47 +00:00
if (ferror(stream))
return EOF;
1989-12-18 14:40:54 +00:00
return w;
}