home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c221 / 6.ddi / MWHC.006 / 3 < prev    next >
Encoding:
Text File  |  1992-12-09  |  555 b   |  33 lines

  1. /*
  2.  *   direct.h -- extra-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. #ifdef __CPLUSPLUS__
  13. extern "C" {
  14. #endif
  15.  
  16. extern int _chdir(char *);
  17. extern int _mkdir(char *);
  18. extern int _rmdir(char *);
  19. extern char * _getcwd(char *, int);
  20.  
  21. #if __HIGHC__
  22.  
  23. extern int chdir(char *);
  24. extern int mkdir(char *);
  25. extern int rmdir(char *);
  26. extern char * getcwd(char *, int);
  27.  
  28. #endif
  29. #ifdef __CPLUSPLUS__
  30. }
  31. #endif
  32. #endif /* _DIRECT_H */
  33.