blob: 900e79a60aca1d31a96d3973af615f7250dbf1c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#ifndef __DIRENT_H
#define __DIRENT_H
#pragma lib "/$M/lib/ape/libap.a"
#ifndef __STAT_H
#include <sys/stat.h>
#endif
/*
* this must be a power of 2 and a multiple of all the ones in the system
*/
#define MAXNAMLEN 255
struct dirent {
char d_name[MAXNAMLEN + 1];
struct stat d_stat;
};
typedef struct _dirdesc {
int dd_fd; /* file descriptor */
long dd_loc; /* buf offset of entry from last readdir() */
long dd_size; /* amount of valid data in buffer */
char *dd_buf; /* directory data buffer */
void *dirs;
int dirsize;
int dirloc;
} DIR;
#ifdef __cplusplus
extern "C" {
#endif
/*
* functions defined on directories
*/
DIR *opendir(const char *);
struct dirent *readdir(DIR *);
void rewinddir(DIR *);
int closedir(DIR *);
#ifdef __cplusplus
}
#endif
#endif
|