File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed
src/unix/bsd/netbsdlike/netbsd Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -1291,7 +1291,9 @@ strcasecmp
1291
1291
strcasestr
1292
1292
strncasecmp
1293
1293
strndup
1294
+ strpct
1294
1295
strsignal
1296
+ strspct
1295
1297
sync
1296
1298
syscall
1297
1299
sysctl
Original file line number Diff line number Diff line change @@ -2279,6 +2279,21 @@ extern "C" {
2279
2279
buflen : :: size_t ,
2280
2280
spec : * const :: c_char ,
2281
2281
) -> * const :: c_char ;
2282
+
2283
+ pub fn strpct (
2284
+ buf : * mut :: c_char ,
2285
+ bufsiz : :: size_t ,
2286
+ numerator : :: uintmax_t ,
2287
+ denominator : :: uintmax_t ,
2288
+ precision : :: size_t ,
2289
+ ) -> * mut :: c_char ;
2290
+ pub fn strspct (
2291
+ buf : * mut :: c_char ,
2292
+ bufsiz : :: size_t ,
2293
+ numerator : :: intmax_t ,
2294
+ denominator : :: intmax_t ,
2295
+ precision : :: size_t ,
2296
+ ) -> * mut :: c_char ;
2282
2297
}
2283
2298
2284
2299
cfg_if ! {
You can’t perform that action at this time.
0 commit comments