fltk 1.3.0rc3
About: FLTK (Fast Light Tool Kit) is a cross-platform C++ GUI toolkit for UNIX/Linux (X11), Microsoft Windows, and MacOS X. Release candidate.
  SfR Fresh Dox: fltk-1.3.0rc3-source.tar.gz ("inofficial" and yet experimental doxygen-generated source code documentation)  

posixScandir.cxx

Go to the documentation of this file.
00001 
00002 #include <dirent.h>
00003 
00004 int func (const char *d, dirent ***list, void *sort) {
00005   int n = scandir(d, list, 0, (int(*)(const dirent **, const dirent **))sort);
00006 }
00007 
00008 int main() {
00009   return 0;
00010 }