home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MISC / NETWORK / SRC_1218.ZIP / DIRUTIL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-09-01  |  367 b   |  18 lines

  1. #ifndef    _DIRUTIL_H
  2. #define    _DIRUTIL_H
  3.  
  4. #ifndef    _GLOBAL_H
  5. #include "global.h"
  6. #endif
  7.  
  8. /* In dirutil.c */
  9. FILE *dir __ARGS((char *path,int full));
  10. int filedir __ARGS((char *name,int times,char *ret_str));
  11. int getdir __ARGS((char *path,int full,FILE *file));
  12.  
  13. /* In pathname.c: */
  14. char *pathname __ARGS((char *cd,char *path));
  15.  
  16. #endif /* _DIRUTIL_H */
  17.  
  18.