File tree Expand file tree Collapse file tree 7 files changed +23
-6
lines changed Expand file tree Collapse file tree 7 files changed +23
-6
lines changed Original file line number Diff line number Diff line change @@ -2225,6 +2225,7 @@ statfs
22252225strcasecmp
22262226strcasestr
22272227strftime
2228+ strftime_l
22282229strncasecmp
22292230strndup
22302231strptime
Original file line number Diff line number Diff line change @@ -1547,6 +1547,8 @@ stack_t
15471547statfs
15481548strcasecmp
15491549strcasestr
1550+ strftime
1551+ strftime_l
15501552strncasecmp
15511553strndup
15521554strsignal
Original file line number Diff line number Diff line change @@ -2204,6 +2204,8 @@ statfs
22042204strcasecmp
22052205strcasestr
22062206strchrnul
2207+ strftime
2208+ strftime_l
22072209strncasecmp
22082210strndup
22092211strsignal
Original file line number Diff line number Diff line change @@ -1551,6 +1551,8 @@ stack_t
15511551strcasecmp
15521552strcasestr
15531553string_to_flags
1554+ strftime
1555+ strftime_l
15541556strncasecmp
15551557strndup
15561558strpct
Original file line number Diff line number Diff line change @@ -1250,6 +1250,8 @@ stack_t
12501250statfs
12511251strcasecmp
12521252strcasestr
1253+ strftime
1254+ strftime_l
12531255strncasecmp
12541256strndup
12551257strsignal
Original file line number Diff line number Diff line change @@ -5604,12 +5604,6 @@ extern "C" {
56045604 pub fn asctime ( tm : * const :: tm ) -> * mut :: c_char ;
56055605 pub fn ctime ( clock : * const time_t ) -> * mut :: c_char ;
56065606 pub fn getdate ( datestr : * const :: c_char ) -> * mut :: tm ;
5607- pub fn strftime (
5608- buf : * mut :: c_char ,
5609- maxsize : :: size_t ,
5610- format : * const :: c_char ,
5611- timeptr : * const :: tm ,
5612- ) -> :: size_t ;
56135607 pub fn strptime (
56145608 buf : * const :: c_char ,
56155609 format : * const :: c_char ,
Original file line number Diff line number Diff line change @@ -899,6 +899,20 @@ extern "C" {
899899 longopts : * const option ,
900900 longindex : * mut :: c_int ,
901901 ) -> :: c_int ;
902+
903+ pub fn strftime (
904+ buf : * mut :: c_char ,
905+ maxsize : :: size_t ,
906+ format : * const :: c_char ,
907+ timeptr : * const :: tm ,
908+ ) -> :: size_t ;
909+ pub fn strftime_l (
910+ buf : * mut :: c_char ,
911+ maxsize : :: size_t ,
912+ format : * const :: c_char ,
913+ timeptr : * const :: tm ,
914+ locale : :: locale_t ,
915+ ) -> :: size_t ;
902916}
903917
904918cfg_if ! {
You can’t perform that action at this time.
0 commit comments