mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
19 lines
337 B
C
19 lines
337 B
C
|
#ifndef _TOKU_DIRENT_H
|
||
|
#define _TOKU_DIRENT_H
|
||
|
|
||
|
//The DIR functions do not exist in windows, but the Linux API ends up
|
||
|
//just using a wrapper. We might convert these into an os_* type api.
|
||
|
|
||
|
DIR *opendir(const char *name);
|
||
|
|
||
|
struct dirent *readdir(DIR *dir);
|
||
|
|
||
|
int closedir(DIR *dir);
|
||
|
|
||
|
#ifndef NAME_MAX
|
||
|
#define NAME_MAX 255
|
||
|
#endif
|
||
|
|
||
|
#endif
|
||
|
|