home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Professional
/
OS2PRO194.ISO
/
os2
/
prgramer
/
rcs
/
sources
/
dirent.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-03-06
|
1KB
|
43 lines
/*
* dirent.h - POSIX directory access routines for MS-DOS and OS/2
*
* Author: Frank Whaley (few@well.sf.ca.us)
*
* Copyright Frank Whaley 1992. All rights reserved.
*
* Permission to use, copy, modify, distribute, and sell this software
* and its documentation for any purpose is hereby granted without fee,
* provided that the above copyright notice appears in all copies of the
* source code. The name of the author may not be used to endorse or
* promote products derived from this software without specific prior
* written permission.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* Read the "CAVEATS" section in dirent.c.
*/
#ifndef __DIRENT_H
#define __DIRENT_H
#ifdef __OS2__
#define d_MAXNAMLEN 255
#else
#define d_MAXNAMLEN 12
#endif
typedef struct __DIRENT DIR;
struct dirent {
char d_name[d_MAXNAMLEN + 1];
};
DIR *opendir(char const *__name);
struct dirent *readdir(DIR *__dir);
void rewinddir(DIR *__dir);
int closedir(DIR *__dir);
#endif /*__DIRENT_H*/