diff options
| author | 2024-04-25 21:24:10 +0100 | |
|---|---|---|
| committer | 2024-04-25 22:32:27 +0000 | |
| commit | 2d04cacc5322951f187bb17e017c12920ac8ebe2 (patch) | |
| tree | 80ee017efa878dfd5344b44249e6a241f2a7f6e2 /v4.0/src/TOOLS/BLD/INC/DIRECT.H | |
| parent | Merge pull request #430 from jpbaltazar/typoptbr (diff) | |
| download | ms-dos-main.tar.gz ms-dos-main.tar.xz ms-dos-main.zip | |
Diffstat (limited to 'v4.0/src/TOOLS/BLD/INC/DIRECT.H')
| -rw-r--r-- | v4.0/src/TOOLS/BLD/INC/DIRECT.H | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/v4.0/src/TOOLS/BLD/INC/DIRECT.H b/v4.0/src/TOOLS/BLD/INC/DIRECT.H new file mode 100644 index 0000000..2e2ebde --- /dev/null +++ b/v4.0/src/TOOLS/BLD/INC/DIRECT.H | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | /*** | ||
| 2 | *direct.h - function declarations for directory handling/creation | ||
| 3 | * | ||
| 4 | * Copyright (c) 1985-1988, 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 *); | ||