home *** CD-ROM | disk | FTP | other *** search
/ Quake 'em / QUAKEEM.BIN / doom_i / program / tcpsrv12.exe / TCPSRV12.TAR / fileio.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-09-27  |  191 b   |  15 lines

  1. /* dfcss.h */
  2.  
  3. #ifndef FILEIO_H
  4. #define FILEIO_H
  5.  
  6. #ifdef __STDC__
  7. int writefile(char *, char *, int);
  8. int readfile(char *, char *, int);
  9. #else
  10. int writefile();
  11. int readfile();
  12. #endif
  13.  
  14. #endif
  15.