dos_compilers/Microsoft C v3/INC/DIRECT.H
2024-07-04 11:11:27 -07:00

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 */