1header: dirent.h 2macros: [] 3types: 4 - type_name: struct_dirent 5 - type_name: DIR 6 - type_name: ino_t 7enums: [] 8objects: [] 9functions: 10 - name: alphasort 11 standards: 12 - POSIX 13 return_type: int 14 arguments: 15 - type: const struct dirent ** 16 - type: const struct dirent ** 17 - name: closedir 18 standards: 19 - POSIX 20 return_type: int 21 arguments: 22 - type: DIR * 23 - name: dirfd 24 standards: 25 - POSIX 26 return_type: int 27 arguments: 28 - type: DIR * 29 - name: fdopendir 30 standards: 31 - POSIX 32 return_type: DIR * 33 arguments: 34 - type: int 35 - name: opendir 36 standards: 37 - POSIX 38 return_type: DIR * 39 arguments: 40 - type: const char * 41 - name: readdir 42 standards: 43 - POSIX 44 return_type: struct dirent * 45 arguments: 46 - type: DIR * 47