Ruby  2.0.0p247(2013-06-27revision41674)
nacl/dirent.h
Go to the documentation of this file.
00001 /*
00002  * Copyright 2011 Google Inc. All Rights Reserved.
00003  * Author: yugui@google.com (Yugui Sonoda)
00004  */
00005 #ifndef RUBY_NACL_DIRENT_H
00006 #define RUBY_NACL_DIRENT_H
00007 
00008 /* NaCl SDK 0.3 has implementations of dir functions but no declaration in
00009  * dirent.h */
00010 int readdir_r(DIR *dirp, struct dirent *entry, struct dirent **result);
00011 void rewinddir(DIR *dirp);
00012 long telldir(DIR *dirp);
00013 void seekdir(DIR *dirp, long offset);
00014 
00015 #endif
00016