]> wirehaze git hosting - MS-DOS.git/blob - v4.0/src/CMD/RESTORE/DIRECT.H

wirehaze git hosting

MZ is back!
[MS-DOS.git] / v4.0 / src / CMD / RESTORE / DIRECT.H
1 /*
2 * direct.h
3 *
4 * This include file contains the function declarations for the library
5 * functions related to directory handling and creation.
6 *
7 * Copyright (C) 1988 Microsoft Corporation
8 *
9 */
10
11 /* function declarations for those who want strong type checking
12 * on arguments to library function calls
13 */
14
15 #ifdef LINT_ARGS /* arg. checking enabled */
16
17 int chdir(char *);
18 char *getcwd(char *, int);
19 int mkdir(char *);
20 int rmdir(char *);
21
22 #else
23
24 extern char *getcwd();
25
26 #endif /* LINT_ARGS */