aboutsummaryrefslogtreecommitdiff
path: root/libc/include/fcntl.yaml
blob: 78f93533b84d3e6226303cb5b5d80ef8384214f5 (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
header: fcntl.h
header_template: fcntl.h.def
macros: []
types:
  - type_name: off_t
  - type_name: mode_t
enums: []
objects: []
functions:
  - name: creat
    standards:
      - POSIX
    return_type: int
    arguments:
      - type: const char *
      - type: mode_t
  - name: fcntl
    standards:
      - POSIX
    return_type: int
    arguments:
      - type: int
      - type: int
      - type: '...'
  - name: open
    standards:
      - POSIX
    return_type: int
    arguments:
      - type: const char *
      - type: int
      - type: '...'
  - name: openat
    standards:
      - POSIX
    return_type: int
    arguments:
      - type: int
      - type: const char *
      - type: int
      - type: '...'