brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.5 KiB · 7f01342 Raw
79 lines · yaml
1header: sys/stat.h2header_template: stat.h.def3macros: []4types:5  - type_name: blkcnt_t6  - type_name: blksize_t7  - type_name: off_t8  - type_name: struct_timeval9  - type_name: gid_t10  - type_name: struct_stat11  - type_name: uid_t12  - type_name: nlink_t13  - type_name: dev_t14  - type_name: struct_timespec15  - type_name: ino_t16  - type_name: mode_t17enums: []18objects: []19functions:20  - name: chmod21    standards:22      - POSIX23    return_type: int24    arguments:25      - type: const char *26      - type: mode_t27  - name: fchmod28    standards:29      - POSIX30    return_type: int31    arguments:32      - type: int33      - type: mode_t34  - name: fchmodat35    standards:36      - POSIX37    return_type: int38    arguments:39      - type: int40      - type: const char *41      - type: mode_t42      - type: int43  - name: fstat44    standards:45      - POSIX46    return_type: int47    arguments:48      - type: int49      - type: struct stat *50  - name: lstat51    standards:52      - POSIX53    return_type: int54    arguments:55      - type: const char *__restrict56      - type: struct stat *__restrict57  - name: mkdir58    standards:59      - POSIX60    return_type: int61    arguments:62      - type: const char *63      - type: mode_t64  - name: mkdirat65    standards:66      - POSIX67    return_type: int68    arguments:69      - type: int70      - type: const char *71      - type: mode_t72  - name: stat73    standards:74      - POSIX75    return_type: int76    arguments:77      - type: const char *__restrict78      - type: struct stat *__restrict79