home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c220 / 4.ddi / INC / DIRECT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-16  |  479 b   |  27 lines

  1. /*
  2.  *   direct.h -- non-ANSI 
  3.  *
  4.  *   Functions for directory services.
  5.  *
  6.  *           Copyright (c) 1990, MetaWare Incorporated
  7.  */
  8.  
  9. #ifndef _DIRECT_H
  10. #define _DIRECT_H
  11.  
  12. extern int _chdir(char *);
  13. extern int _mkdir(char *);
  14. extern int _rmdir(char *);
  15. extern char * _getcwd(char *, int);
  16.  
  17. #ifdef __HIGHC__
  18.  
  19. extern int chdir(char *);
  20. extern int mkdir(char *);
  21. extern int rmdir(char *);
  22. extern char * getcwd(char *, int);
  23.  
  24. #endif
  25.  
  26. #endif /* _DIRECT_H */
  27.