home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s038 / 10.ddi / 017.LIF / DIRECT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-02  |  766 b   |  32 lines

  1. /* direct.h - directory manipulation function prototypes
  2.  * $Version: 1.1 $
  3.  * Copyright (c) 1988-91 Intel Corporation, ALL RIGHTS RESERVED.
  4.  */
  5.  
  6. #ifndef _directh
  7. #define _directh
  8. /*lint -library */
  9.  
  10. #pragma fixedparams("chdir",    "_chdrive",  "filedir", "gcdir",    "getcwd")
  11. #pragma fixedparams("_getdcwd", "_getdrive", "mkdir",    "rmdir")
  12.  
  13. #ifndef _mode_t
  14. #define _mode_t
  15. typedef unsigned long mode_t;
  16. #endif
  17.  
  18. /*
  19.  * Function prototypes:
  20.  */
  21. int    chdir(const char *);
  22. int   _chdrive(int);
  23. char  *filedir(const char *, unsigned);
  24. char  *gcdir(const char *);
  25. char  *getcwd(char *, int);
  26. char *_getdcwd(int, char *, int);
  27. int   _getdrive(void);
  28. int    mkdir(const char *, mode_t);
  29. int    rmdir(const char *);
  30.  
  31. #endif /* _directh */
  32.