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

  1. /* log.h */
  2.  
  3. #ifndef LOG_H
  4. #define LOG_H
  5.  
  6. #ifdef __STDC__
  7. FILE *openlog(char *);
  8. int closelog(FILE *);
  9. int logger(FILE *, char *);
  10. #else
  11. FILE *openlog();
  12. int closelog();
  13. int logger();
  14. #endif
  15.  
  16. #endif
  17.