Ruby  2.5.0dev(2017-10-22revision60238)
dirent.h
Go to the documentation of this file.
1 /*
2  * Copyright 2011 Google Inc. All Rights Reserved.
3  * Author: yugui@google.com (Yugui Sonoda)
4  */
5 #ifndef RUBY_NACL_DIRENT_H
6 #define RUBY_NACL_DIRENT_H
7 
8 /* NaCl SDK 0.3 has implementations of dir functions but no declaration in
9  * dirent.h */
10 int readdir_r(DIR *dirp, struct dirent *entry, struct dirent **result);
11 void rewinddir(DIR *dirp);
12 long telldir(DIR *dirp);
13 void seekdir(DIR *dirp, long offset);
14 
15 #endif
Definition: dir.h:18
#define dirent
Definition: dir.c:48
void rewinddir(DIR *dirp)
long telldir(DIR *dirp)
void seekdir(DIR *dirp, long offset)
int readdir_r(DIR *dirp, struct dirent *entry, struct dirent **result)