mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-12 08:47:41 +01:00
git-svn-id: file:///srv/svn/repos/haiku/trunk/buildtools@9568 a95241bf-73f2-0310-859d-f6bbb57e9c96
32 lines
622 B
C
32 lines
622 B
C
#ifndef __dirent_h
|
|
#define __dirent_h
|
|
|
|
#include "sys/dir.h"
|
|
|
|
struct dirent {
|
|
long d_ino; /* inode number of entry */
|
|
off_t d_off; /* offset of disk directory entry */
|
|
unsigned short d_reclen; /* length of this record */
|
|
char d_name[1]; /* name of file */
|
|
};
|
|
|
|
/*
|
|
#define DIRENTBASESIZE \
|
|
(((struct dirent *) 0)->d_name - (char *) 0)
|
|
#define DIRENTSIZE(namelen) \
|
|
((DIRENTBASESIZE + (namelen) + NBPW) & ~(NBPW - 1))
|
|
*/
|
|
|
|
/* from Mips posix/dirent.h */
|
|
|
|
/*
|
|
#undef rewinddir
|
|
*/
|
|
|
|
extern DIR *opendir();
|
|
extern struct dirent *readdir();
|
|
extern void rewinddir();
|
|
extern int closedir();
|
|
|
|
#endif /* ! __dirent_h */
|