home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / EMXLIB8F.ZIP / EMX / LIB / IO / GETW.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-02  |  198 b   |  11 lines

  1. /* getw.c (emx+gcc) -- Copyright (c) 1992-1993 by Kai Uwe Rommel */
  2.  
  3. #include <stdio.h>
  4.  
  5. int getw (FILE *stream)
  6. {
  7.   int x;
  8.  
  9.   return (fread (&x, sizeof (x), 1, stream) == 1 ? x : EOF);
  10. }
  11.