27 lines
527 B
C
27 lines
527 B
C
/*
|
|
* direct.h
|
|
*
|
|
* This include file contains the function declarations for the library
|
|
* functions related to directory handling and creation.
|
|
*
|
|
* Copyright (C) Microsoft Corporation, 1984
|
|
*
|
|
*/
|
|
|
|
/* 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 */
|