home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Languages / Quick C 2.0 / INCLUDE / DIRECT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-12-05  |  602 b   |  25 lines

  1. /***
  2. *direct.h - function declarations for directory handling/creation
  3. *
  4. *    Copyright (c) 1985-1989, Microsoft Corporation.  All rights reserved.
  5. *
  6. *Purpose:
  7. *    This include file contains the function declarations for the library
  8. *    functions related to directory handling and creation.
  9. *
  10. ****/
  11.  
  12.  
  13. #ifndef NO_EXT_KEYS    /* extensions enabled */
  14.     #define _CDECL    cdecl
  15. #else /* extensions not enabled */
  16.     #define _CDECL
  17. #endif /* NO_EXT_KEYS */
  18.  
  19. /* function prototypes */
  20.  
  21. int _CDECL chdir(char *);
  22. char * _CDECL getcwd(char *, int);
  23. int _CDECL mkdir(char *);
  24. int _CDECL rmdir(char *);
  25.