home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 August - Disc 3 / chip_20018103_hu.iso / amiga / chiputil / gg / loadelfwos.lha / LoadElfWOS.lzx / src / util.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-07-08  |  214 b   |  16 lines

  1. #include <stdio.h>
  2. #include "util.h"
  3.  
  4. int filelength (FILE *f)
  5. {
  6.    int      pos;
  7.    int      end;
  8.  
  9.    pos = ftell (f);
  10.    fseek (f, 0, SEEK_END);
  11.    end = ftell (f);
  12.    fseek (f, pos, SEEK_SET);
  13.  
  14.    return end;
  15. }
  16.