Ruby
2.5.0dev(2017-10-22revision60238)
nacl
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
DIR
Definition:
dir.h:18
dirent
#define dirent
Definition:
dir.c:48
rewinddir
void rewinddir(DIR *dirp)
telldir
long telldir(DIR *dirp)
seekdir
void seekdir(DIR *dirp, long offset)
readdir_r
int readdir_r(DIR *dirp, struct dirent *entry, struct dirent **result)
Generated by
1.8.13