direct.h
上传用户:xiaoan1112
上传日期:2013-04-11
资源大小:19621k
文件大小:1k
源码类别:

操作系统开发

开发平台:

Visual C++

  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.  *
  8.  *   Microsoft Confidential
  9.  *   Copyright (C) Microsoft Corporation 1991
  10.  *   All Rights Reserved.
  11.  *
  12.  *
  13.  */
  14. /* function declarations for those who want strong type checking
  15.  * on arguments to library function calls
  16.  */
  17. #ifdef LINT_ARGS /* arg. checking enabled */
  18. int chdir(char *);
  19. char *getcwd(char *, int);
  20. int mkdir(char *);
  21. int rmdir(char *);
  22. #else
  23. extern char *getcwd();
  24. #endif /* LINT_ARGS */