[go: up one dir, main page]

File: posixScandir.cxx

package info (click to toggle)
fltk1.3 1.3.5-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 24,212 kB
  • sloc: cpp: 104,591; ansic: 88,673; sh: 6,607; makefile: 1,887; perl: 27; xml: 7
file content (10 lines) | stat: -rw-r--r-- 186 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10

#include <dirent.h>

int func (const char *d, dirent ***list, void *sort) {
  int n = scandir(d, list, 0, (int(*)(const dirent **, const dirent **))sort);
}

int main() {
  return 0;
}