home *** CD-ROM | disk | FTP | other *** search
- #ifndef __direct_h
- #define __direct_h
-
- #pragma info( none )
- #ifndef __CHKHDR__
- #pragma info( none )
- #endif
- #pragma info( restore )
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- /********************************************************************/
- /* <direct.h> header file */
- /* */
- /* Licensed Materials - Property of IBM */
- /* */
- /* IBM C Set/2 Beta Version */
- /* Copyright (C) International Business Machines Corp., 1991,1992 */
- /* All rights reserved */
- /* */
- /* US Government Users Restricted Rights - */
- /* Use, duplication, or disclosure restricted */
- /* by GSA ADP Schedule Contract with IBM Corp. */
- /* */
- /********************************************************************/
-
- int _Optlink _chdir( char * );
- char * _Optlink _getcwd( char *, int );
- int _Optlink _mkdir( char * );
- int _Optlink _rmdir( char * );
- int _Optlink _chdrive( int );
- char * _Optlink _getdcwd( int , char *, int );
- int _Optlink _getdrive( void );
-
- #if defined(__EXTENDED__)
-
- #define chdir( a ) _chdir((a))
- #define getcwd( a , b ) _getcwd((a),(b))
- #define mkdir( a ) _mkdir((a))
- #define rmdir( a ) _rmdir((a))
-
- #endif
-
- #ifdef __cplusplus
- }
- #endif
-
- #pragma info( none )
- #ifndef __CHKHDR__
- #pragma info( restore )
- #endif
- #pragma info( restore )
-
- #endif
-