gcc/libio/stdio/getw.c

14 lines
226 B
C
Raw Normal View History

1997-08-22 00:57:35 +02:00
#include "libioP.h"
#include "stdio.h"
int
getw(fp)
FILE *fp;
{
int w;
_IO_size_t bytes_read;
CHECK_FILE(fp, EOF);
bytes_read = _IO_sgetn (fp, (char*)&w, sizeof(w));
return sizeof(w) == bytes_read ? w : EOF;
}