ack/lang/cem/libcc/stdio/getw.c

17 lines
243 B
C
Raw Normal View History

1987-03-31 10:45:53 +00:00
/* $Header$ */
1987-01-27 15:57:55 +00:00
#include <stdio.h>
int getw(iop)
register FILE *iop;
{
register int cnt = sizeof(int);
int w;
register char *p = (char *) &w;
while (cnt--) {
*p++ = getc(iop);
}
1989-06-19 09:56:16 +00:00
if (feof(iop) || ferror(iop)) return EOF;
1987-01-27 15:57:55 +00:00
return w;
}