blob: aba9076af8857ca7989d19c53c92fabd3653c617 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*
* direct.h
*
* This include file contains the function declarations for the library
* functions related to directory handling and creation.
*
* Copyright (C) 1988 Microsoft Corporation
*
*/
/* function declarations for those who want strong type checking
* on arguments to library function calls
*/
#ifdef LINT_ARGS /* arg. checking enabled */
int chdir(char *);
char *getcwd(char *, int);
int mkdir(char *);
int rmdir(char *);
#else
extern char *getcwd();
#endif /* LINT_ARGS */
|