aboutsummaryrefslogtreecommitdiff
path: root/libc/include/sys/stat.yaml
blob: 7f013420818ab6824bc91a9ee20b5493bda472e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
header: sys/stat.h
header_template: stat.h.def
macros: []
types:
  - type_name: blkcnt_t
  - type_name: blksize_t
  - type_name: off_t
  - type_name: struct_timeval
  - type_name: gid_t
  - type_name: struct_stat
  - type_name: uid_t
  - type_name: nlink_t
  - type_name: dev_t
  - type_name: struct_timespec
  - type_name: ino_t
  - type_name: mode_t
enums: []
objects: []
functions:
  - name: chmod
    standards:
      - POSIX
    return_type: int
    arguments:
      - type: const char *
      - type: mode_t
  - name: fchmod
    standards:
      - POSIX
    return_type: int
    arguments:
      - type: int
      - type: mode_t
  - name: fchmodat
    standards:
      - POSIX
    return_type: int
    arguments:
      - type: int
      - type: const char *
      - type: mode_t
      - type: int
  - name: fstat
    standards:
      - POSIX
    return_type: int
    arguments:
      - type: int
      - type: struct stat *
  - name: lstat
    standards:
      - POSIX
    return_type: int
    arguments:
      - type: const char *__restrict
      - type: struct stat *__restrict
  - name: mkdir
    standards:
      - POSIX
    return_type: int
    arguments:
      - type: const char *
      - type: mode_t
  - name: mkdirat
    standards:
      - POSIX
    return_type: int
    arguments:
      - type: int
      - type: const char *
      - type: mode_t
  - name: stat
    standards:
      - POSIX
    return_type: int
    arguments:
      - type: const char *__restrict
      - type: struct stat *__restrict