File tree Expand file tree Collapse file tree 8 files changed +8
-0
lines changed Expand file tree Collapse file tree 8 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -3215,6 +3215,7 @@ strsignal
3215
3215
strspn
3216
3216
strstr
3217
3217
strtod
3218
+ strtof
3218
3219
strtok
3219
3220
strtol
3220
3221
strtoul
Original file line number Diff line number Diff line change @@ -814,6 +814,7 @@ strrchr
814
814
strspn
815
815
strstr
816
816
strtod
817
+ strtof
817
818
strtok
818
819
strtol
819
820
strtoul
Original file line number Diff line number Diff line change @@ -298,6 +298,7 @@ strrchr
298
298
strspn
299
299
strstr
300
300
strtod
301
+ strtof
301
302
strtok
302
303
strtol
303
304
strtoul
Original file line number Diff line number Diff line change @@ -3394,6 +3394,7 @@ extern "C" {
3394
3394
pub fn perror ( s : * const c_char ) ;
3395
3395
pub fn atoi ( s : * const c_char ) -> c_int ;
3396
3396
pub fn strtod ( s : * const c_char , endp : * mut * mut c_char ) -> c_double ;
3397
+ pub fn strtof ( s : * const c_char , endp : * mut * mut c_char ) -> c_float ;
3397
3398
pub fn strtol ( s : * const c_char , endp : * mut * mut c_char , base : c_int ) -> c_long ;
3398
3399
pub fn strtoul ( s : * const c_char , endp : * mut * mut c_char , base : c_int ) -> c_ulong ;
3399
3400
pub fn calloc ( nobj : size_t , size : size_t ) -> * mut c_void ;
Original file line number Diff line number Diff line change @@ -486,6 +486,7 @@ extern "C" {
486
486
link_name = "strtod$UNIX2003"
487
487
) ]
488
488
pub fn strtod ( s : * const c_char , endp : * mut * mut c_char ) -> c_double ;
489
+ pub fn strtof ( s : * const c_char , endp : * mut * mut c_char ) -> c_float ;
489
490
pub fn strtol ( s : * const c_char , endp : * mut * mut c_char , base : c_int ) -> c_long ;
490
491
pub fn strtoul ( s : * const c_char , endp : * mut * mut c_char , base : c_int ) -> c_ulong ;
491
492
pub fn calloc ( nobj : size_t , size : size_t ) -> * mut c_void ;
Original file line number Diff line number Diff line change @@ -1121,6 +1121,7 @@ extern "C" {
1121
1121
pub fn perror ( s : * const c_char ) ;
1122
1122
pub fn atoi ( s : * const c_char ) -> c_int ;
1123
1123
pub fn strtod ( s : * const c_char , endp : * mut * mut c_char ) -> c_double ;
1124
+ pub fn strtof ( s : * const c_char , endp : * mut * mut c_char ) -> c_float ;
1124
1125
pub fn strtol ( s : * const c_char , endp : * mut * mut c_char , base : c_int ) -> c_long ;
1125
1126
pub fn strtoul ( s : * const c_char , endp : * mut * mut c_char , base : c_int ) -> c_ulong ;
1126
1127
pub fn calloc ( nobj : size_t , size : size_t ) -> * mut c_void ;
Original file line number Diff line number Diff line change @@ -447,6 +447,7 @@ extern "C" {
447
447
pub fn atoi ( s : * const c_char ) -> c_int ;
448
448
pub fn atof ( s : * const c_char ) -> c_double ;
449
449
pub fn strtod ( s : * const c_char , endp : * mut * mut c_char ) -> c_double ;
450
+ pub fn strtof ( s : * const c_char , endp : * mut * mut c_char ) -> c_float ;
450
451
pub fn strtol ( s : * const c_char , endp : * mut * mut c_char , base : c_int ) -> c_long ;
451
452
pub fn strtoul ( s : * const c_char , endp : * mut * mut c_char , base : c_int ) -> c_ulong ;
452
453
Original file line number Diff line number Diff line change @@ -319,6 +319,7 @@ extern "C" {
319
319
pub fn perror ( s : * const c_char ) ;
320
320
pub fn atoi ( s : * const c_char ) -> c_int ;
321
321
pub fn strtod ( s : * const c_char , endp : * mut * mut c_char ) -> c_double ;
322
+ pub fn strtof ( s : * const c_char , endp : * mut * mut c_char ) -> c_float ;
322
323
pub fn strtol ( s : * const c_char , endp : * mut * mut c_char , base : c_int ) -> c_long ;
323
324
pub fn strtoul ( s : * const c_char , endp : * mut * mut c_char , base : c_int ) -> c_ulong ;
324
325
pub fn calloc ( nobj : size_t , size : size_t ) -> * mut c_void ;
You can’t perform that action at this time.
0 commit comments