From 36bf56940af90baa478dd1258884291d5d213d10 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 6 Feb 2012 21:51:02 -0500 Subject: more locale_t interfaces (string stuff) and header updates this should be everything except for some functions where the non-_l version isn't even implemented yet (mainly some non-ISO-C wcs* functions). --- src/locale/strftime_l.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/locale/strftime_l.c (limited to 'src/locale/strftime_l.c') diff --git a/src/locale/strftime_l.c b/src/locale/strftime_l.c new file mode 100644 index 00000000..70b2f151 --- /dev/null +++ b/src/locale/strftime_l.c @@ -0,0 +1,7 @@ +#include +#include + +size_t strftime_l(char *s, size_t n, const char *f, const struct tm *tm, locale_t l) +{ + return strftime(s, n, f, tm); +} -- cgit v1.2.1