source: bootcd/isolinux/syslinux-6.03/com32/include/dirent.h

Last change on this file was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 345 bytes
Line 
1/*
2 * dirent.h
3 */
4
5#ifndef _DIRENT_H
6#define _DIRENT_H
7
8#include <klibc/extern.h>
9#include <klibc/compiler.h>
10#include <stddef.h>
11#include <sys/types.h>
12
13#include <sys/dirent.h>
14
15__extern DIR *opendir(const char *);
16__extern struct dirent *readdir(DIR *);
17__extern int closedir(DIR *);
18__extern DIR *fdopendir(int);
19
20#endif /* Not _DIRENT_H */
Note: See TracBrowser for help on using the repository browser.