File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -181,15 +181,15 @@ functions:
181
181
- BSDExtensions
182
182
return_type : size_t
183
183
arguments :
184
- - type : const char *__restrict
184
+ - type : char *__restrict
185
185
- type : const char *__restrict
186
186
- type : size_t
187
187
- name : strlcpy
188
188
standards :
189
189
- BSDExtensions
190
190
return_type : size_t
191
191
arguments :
192
- - type : const char *__restrict
192
+ - type : char *__restrict
193
193
- type : const char *__restrict
194
194
- type : size_t
195
195
- name : strlen
Original file line number Diff line number Diff line change @@ -20,12 +20,12 @@ def BsdExtensions : StandardSpec<"BSDExtensions"> {
20
20
FunctionSpec<
21
21
"strlcat",
22
22
RetValSpec<SizeTType>,
23
- [ArgSpec<ConstCharRestrictedPtr >, ArgSpec<ConstCharRestrictedPtr>, ArgSpec<SizeTType>]
23
+ [ArgSpec<CharRestrictedPtr >, ArgSpec<ConstCharRestrictedPtr>, ArgSpec<SizeTType>]
24
24
>,
25
25
FunctionSpec<
26
26
"strlcpy",
27
27
RetValSpec<SizeTType>,
28
- [ArgSpec<ConstCharRestrictedPtr >, ArgSpec<ConstCharRestrictedPtr>, ArgSpec<SizeTType>]
28
+ [ArgSpec<CharRestrictedPtr >, ArgSpec<ConstCharRestrictedPtr>, ArgSpec<SizeTType>]
29
29
>,
30
30
FunctionSpec<
31
31
"strsep",
You can’t perform that action at this time.
0 commit comments