direct.h
资源名称:DOS系统的源代码.rar [点击查看]
上传用户:xiaoan1112
上传日期:2013-04-11
资源大小:19621k
文件大小:1k
源码类别:
操作系统开发
开发平台:
Visual C++
- /*
- * direct.h
- *
- * This include file contains the function declarations for the library
- * functions related to directory handling and creation.
- *
- *
- * Microsoft Confidential
- * Copyright (C) Microsoft Corporation 1991
- * All Rights Reserved.
- *
- *
- */
- /* 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 */