Skip to content

Commit b6698a5

Browse files
regen headers
1 parent 909fd85 commit b6698a5

File tree

3 files changed

+231
-0
lines changed

3 files changed

+231
-0
lines changed

libc/docs/headers/arpa/inet.rst

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
.. include:: ../../check.rst
2+
3+
===========
4+
arpa/inet.h
5+
===========
6+
7+
Functions
8+
=========
9+
10+
.. list-table::
11+
:widths: auto
12+
:align: center
13+
:header-rows: 1
14+
15+
* - Function
16+
- Implemented
17+
- C23 Standard Section
18+
- POSIX.1-2024 Standard Section
19+
* - htonl
20+
- |check|
21+
-
22+
-
23+
* - htons
24+
- |check|
25+
-
26+
-
27+
* - inet_addr
28+
-
29+
-
30+
-
31+
* - inet_ntoa
32+
-
33+
-
34+
-
35+
* - inet_ntop
36+
-
37+
-
38+
-
39+
* - inet_pton
40+
-
41+
-
42+
-
43+
* - ntohl
44+
- |check|
45+
-
46+
-
47+
* - ntohs
48+
- |check|
49+
-
50+
-

libc/docs/headers/index.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Implementation Status
44
.. toctree::
55
:maxdepth: 1
66

7+
arpa/inet
78
assert
89
complex
910
ctype
@@ -21,6 +22,7 @@ Implementation Status
2122
stdlib
2223
string
2324
strings
25+
sys/mman
2426
threads
2527
time
2628
uchar

libc/docs/headers/sys/mman.rst

Lines changed: 179 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,179 @@
1+
.. include:: ../../check.rst
2+
3+
==========
4+
sys/mman.h
5+
==========
6+
7+
Macros
8+
======
9+
10+
.. list-table::
11+
:widths: auto
12+
:align: center
13+
:header-rows: 1
14+
15+
* - Macro
16+
- Implemented
17+
- C23 Standard Section
18+
- POSIX.1-2024 Standard Section
19+
* - MAP_ANON
20+
-
21+
-
22+
-
23+
* - MAP_ANONYMOUS
24+
-
25+
-
26+
-
27+
* - MAP_FAILED
28+
- |check|
29+
-
30+
-
31+
* - MAP_FIXED
32+
-
33+
-
34+
-
35+
* - MAP_PRIVATE
36+
-
37+
-
38+
-
39+
* - MAP_SHARED
40+
-
41+
-
42+
-
43+
* - MCL_CURRENT
44+
-
45+
-
46+
-
47+
* - MCL_FUTURE
48+
-
49+
-
50+
-
51+
* - MS_ASYNC
52+
-
53+
-
54+
-
55+
* - MS_INVALIDATE
56+
-
57+
-
58+
-
59+
* - MS_SYNC
60+
-
61+
-
62+
-
63+
* - POSIX_MADV_DONTNEED
64+
- |check|
65+
-
66+
-
67+
* - POSIX_MADV_NORMAL
68+
- |check|
69+
-
70+
-
71+
* - POSIX_MADV_RANDOM
72+
- |check|
73+
-
74+
-
75+
* - POSIX_MADV_SEQUENTIAL
76+
- |check|
77+
-
78+
-
79+
* - POSIX_MADV_WILLNEED
80+
- |check|
81+
-
82+
-
83+
* - POSIX_TYPED_MEM_ALLOCATE
84+
-
85+
-
86+
-
87+
* - POSIX_TYPED_MEM_ALLOCATE_CONTIG
88+
-
89+
-
90+
-
91+
* - POSIX_TYPED_MEM_MAP_ALLOCATABLE
92+
-
93+
-
94+
-
95+
* - PROT_EXEC
96+
-
97+
-
98+
-
99+
* - PROT_NONE
100+
-
101+
-
102+
-
103+
* - PROT_READ
104+
-
105+
-
106+
-
107+
* - PROT_WRITE
108+
-
109+
-
110+
-
111+
112+
Functions
113+
=========
114+
115+
.. list-table::
116+
:widths: auto
117+
:align: center
118+
:header-rows: 1
119+
120+
* - Function
121+
- Implemented
122+
- C23 Standard Section
123+
- POSIX.1-2024 Standard Section
124+
* - mlock
125+
- |check|
126+
-
127+
-
128+
* - mlockall
129+
- |check|
130+
-
131+
-
132+
* - mmap
133+
- |check|
134+
-
135+
-
136+
* - mprotect
137+
- |check|
138+
-
139+
-
140+
* - msync
141+
- |check|
142+
-
143+
-
144+
* - munlock
145+
- |check|
146+
-
147+
-
148+
* - munlockall
149+
- |check|
150+
-
151+
-
152+
* - munmap
153+
- |check|
154+
-
155+
-
156+
* - posix_madvise
157+
- |check|
158+
-
159+
-
160+
* - posix_mem_offset
161+
-
162+
-
163+
-
164+
* - posix_typed_mem_get_info
165+
-
166+
-
167+
-
168+
* - posix_typed_mem_open
169+
-
170+
-
171+
-
172+
* - shm_open
173+
- |check|
174+
-
175+
-
176+
* - shm_unlink
177+
- |check|
178+
-
179+
-

0 commit comments

Comments
 (0)