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
32153215strspn
32163216strstr
32173217strtod
3218+ strtof
32183219strtok
32193220strtol
32203221strtoul
Original file line number Diff line number Diff line change @@ -814,6 +814,7 @@ strrchr
814814strspn
815815strstr
816816strtod
817+ strtof
817818strtok
818819strtol
819820strtoul
Original file line number Diff line number Diff line change @@ -298,6 +298,7 @@ strrchr
298298strspn
299299strstr
300300strtod
301+ strtof
301302strtok
302303strtol
303304strtoul
Original file line number Diff line number Diff line change @@ -3394,6 +3394,7 @@ extern "C" {
33943394 pub fn perror ( s : * const c_char ) ;
33953395 pub fn atoi ( s : * const c_char ) -> c_int ;
33963396 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 ;
33973398 pub fn strtol ( s : * const c_char , endp : * mut * mut c_char , base : c_int ) -> c_long ;
33983399 pub fn strtoul ( s : * const c_char , endp : * mut * mut c_char , base : c_int ) -> c_ulong ;
33993400 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" {
486486 link_name = "strtod$UNIX2003"
487487 ) ]
488488 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 ;
489490 pub fn strtol ( s : * const c_char , endp : * mut * mut c_char , base : c_int ) -> c_long ;
490491 pub fn strtoul ( s : * const c_char , endp : * mut * mut c_char , base : c_int ) -> c_ulong ;
491492 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" {
11211121 pub fn perror ( s : * const c_char ) ;
11221122 pub fn atoi ( s : * const c_char ) -> c_int ;
11231123 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 ;
11241125 pub fn strtol ( s : * const c_char , endp : * mut * mut c_char , base : c_int ) -> c_long ;
11251126 pub fn strtoul ( s : * const c_char , endp : * mut * mut c_char , base : c_int ) -> c_ulong ;
11261127 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" {
447447 pub fn atoi ( s : * const c_char ) -> c_int ;
448448 pub fn atof ( s : * const c_char ) -> c_double ;
449449 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 ;
450451 pub fn strtol ( s : * const c_char , endp : * mut * mut c_char , base : c_int ) -> c_long ;
451452 pub fn strtoul ( s : * const c_char , endp : * mut * mut c_char , base : c_int ) -> c_ulong ;
452453
Original file line number Diff line number Diff line change @@ -319,6 +319,7 @@ extern "C" {
319319 pub fn perror ( s : * const c_char ) ;
320320 pub fn atoi ( s : * const c_char ) -> c_int ;
321321 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 ;
322323 pub fn strtol ( s : * const c_char , endp : * mut * mut c_char , base : c_int ) -> c_long ;
323324 pub fn strtoul ( s : * const c_char , endp : * mut * mut c_char , base : c_int ) -> c_ulong ;
324325 pub fn calloc ( nobj : size_t , size : size_t ) -> * mut c_void ;
You can’t perform that action at this time.
0 commit comments