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

  1. /* fgetpos.c (emx+gcc) -- Copyright (c) 1990-1993 by Eberhard Mattes */
  2.  
  3. #include <stdio.h>
  4.  
  5. int fgetpos (FILE *stream, fpos_t *pos)
  6. {
  7.   if ((*pos = ftell (stream)) == (long)EOF)
  8.     return (EOF);
  9.   else
  10.     return (0);
  11. }
  12.