From e0614f7cd418afedd06c9bcd5abb965608bc52f8 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Thu, 1 Mar 2012 23:24:45 -0500 Subject: add all missing wchar functions except floating point parsers these are mostly untested and adapted directly from corresponding byte string functions and similar. --- src/locale/wcscoll_l.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/locale/wcscoll_l.c (limited to 'src/locale/wcscoll_l.c') diff --git a/src/locale/wcscoll_l.c b/src/locale/wcscoll_l.c new file mode 100644 index 00000000..f257ec8d --- /dev/null +++ b/src/locale/wcscoll_l.c @@ -0,0 +1,6 @@ +#include + +int wcscoll_l(const wchar_t *l, const wchar_t *r, locale_t locale) +{ + return wcscoll(l, r); +} -- cgit v1.2.1