46 lines · yaml
1header: dirent.h2standards:3 - posix4types:5 - type_name: struct_dirent6 - type_name: DIR7 - type_name: ino_t8functions:9 - name: alphasort10 standards:11 - posix12 return_type: int13 arguments:14 - type: const struct dirent **15 - type: const struct dirent **16 - name: closedir17 standards:18 - posix19 return_type: int20 arguments:21 - type: DIR *22 - name: dirfd23 standards:24 - posix25 return_type: int26 arguments:27 - type: DIR *28 - name: fdopendir29 standards:30 - posix31 return_type: DIR *32 arguments:33 - type: int34 - name: opendir35 standards:36 - posix37 return_type: DIR *38 arguments:39 - type: const char *40 - name: readdir41 standards:42 - posix43 return_type: struct dirent *44 arguments:45 - type: DIR *46