diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-02-06 21:51:02 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-02-06 21:51:02 -0500 |
commit | 36bf56940af90baa478dd1258884291d5d213d10 (patch) | |
tree | f959d61ee79470575a2921e568442ec9c0b11b6e /src/locale/nl_langinfo_l.c | |
parent | c09b6f8ab6edefba52183f8c5ecf6520a8b7ad8f (diff) | |
download | musl-36bf56940af90baa478dd1258884291d5d213d10.tar.gz musl-36bf56940af90baa478dd1258884291d5d213d10.tar.xz musl-36bf56940af90baa478dd1258884291d5d213d10.zip |
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).
Diffstat (limited to 'src/locale/nl_langinfo_l.c')
-rw-r--r-- | src/locale/nl_langinfo_l.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/locale/nl_langinfo_l.c b/src/locale/nl_langinfo_l.c new file mode 100644 index 00000000..b54db95c --- /dev/null +++ b/src/locale/nl_langinfo_l.c @@ -0,0 +1,7 @@ +#include <locale.h> +#include <langinfo.h> + +char *nl_langinfo_l(nl_item item, locale_t l) +{ + return nl_langinfo(item); +} |