File tree Expand file tree Collapse file tree 4 files changed +16
-0
lines changed
src/unix/linux_like/linux Expand file tree Collapse file tree 4 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -691,6 +691,7 @@ eaccess
691691asctime_r
692692ctime_r
693693strftime
694+ strftime_l
694695strptime
695696dirname
696697posix_basename
Original file line number Diff line number Diff line change @@ -78,6 +78,7 @@ euidaccess
7878eaccess
7979asctime_r
8080strftime
81+ strftime_l
8182strptime
8283dirname
8384basename
Original file line number Diff line number Diff line change @@ -1462,6 +1462,13 @@ extern "C" {
14621462 format : * const :: c_char ,
14631463 tm : * const :: tm ,
14641464 ) -> :: size_t ;
1465+ pub fn strftime_l (
1466+ s : * mut :: c_char ,
1467+ max : :: size_t ,
1468+ format : * const :: c_char ,
1469+ tm : * const :: tm ,
1470+ locale : :: locale_t ,
1471+ ) -> :: size_t ;
14651472 pub fn strptime ( s : * const :: c_char , format : * const :: c_char , tm : * mut :: tm ) -> * mut :: c_char ;
14661473
14671474 pub fn dirname ( path : * mut :: c_char ) -> * mut :: c_char ;
Original file line number Diff line number Diff line change @@ -889,6 +889,13 @@ extern "C" {
889889 format : * const :: c_char ,
890890 tm : * const :: tm ,
891891 ) -> :: size_t ;
892+ pub fn strftime_l (
893+ s : * mut :: c_char ,
894+ max : :: size_t ,
895+ format : * const :: c_char ,
896+ tm : * const :: tm ,
897+ locale : :: locale_t ,
898+ ) -> :: size_t ;
892899 pub fn strptime ( s : * const :: c_char , format : * const :: c_char , tm : * mut :: tm ) -> * mut :: c_char ;
893900
894901 pub fn dirname ( path : * mut :: c_char ) -> * mut :: c_char ;
You can’t perform that action at this time.
0 commit comments