home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 387b.lha / dice_v2.02 / lib / stdio / fsetpos.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-30  |  153 b   |  18 lines

  1.  
  2. /*
  3.  *  FGETPOS.C
  4.  */
  5.  
  6. #include <stdio.h>
  7.  
  8. int
  9. fsetpos(fp, pos)
  10. FILE *fp;
  11. fpos_t *pos;
  12. {
  13.     if (fseek(fp, *pos, 0) < 0)
  14.     return(EOF);
  15.     return(0);
  16. }
  17.  
  18.