mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
6ebe124875
git-svn-id: file:///svn/toku/tokudb.1032b@7837 c7de825b-a66e-492c-adef-691d508d4ae1
18 lines
342 B
C
18 lines
342 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 toku_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
|
|
|