diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-02-06 21:29:31 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-02-06 21:29:31 -0500 |
commit | e5a7f14c818a622ea7fbbc981657eb0c47ce3c00 (patch) | |
tree | 5ff7550d2c2f70b85cf0e8fc6157c6776b90fd32 /src/locale/iswxdigit_l.c | |
parent | 4cf667c9c90cdcf63233467cbed42a2dab5c35a9 (diff) | |
download | musl-e5a7f14c818a622ea7fbbc981657eb0c47ce3c00.tar.gz musl-e5a7f14c818a622ea7fbbc981657eb0c47ce3c00.tar.xz musl-e5a7f14c818a622ea7fbbc981657eb0c47ce3c00.zip |
add more of the locale_t interfaces, all dummied out to ignore the locale
Diffstat (limited to 'src/locale/iswxdigit_l.c')
-rw-r--r-- | src/locale/iswxdigit_l.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/locale/iswxdigit_l.c b/src/locale/iswxdigit_l.c new file mode 100644 index 00000000..8df3f738 --- /dev/null +++ b/src/locale/iswxdigit_l.c @@ -0,0 +1,6 @@ +#include <wctype.h> + +wint_t iswxdigit_l(wint_t c, locale_t l) +{ + return iswxdigit(c); +} |