mirror of https://git.musl-libc.org/git/musl
19 changed files with 113 additions and 0 deletions
@ -0,0 +1,6 @@ |
|||
#include <wctype.h> |
|||
|
|||
wint_t iswalnum_l(wint_t c, locale_t l) |
|||
{ |
|||
return iswalnum(c); |
|||
} |
|||
@ -0,0 +1,6 @@ |
|||
#include <wctype.h> |
|||
|
|||
wint_t iswalpha_l(wint_t c, locale_t l) |
|||
{ |
|||
return iswalpha(c); |
|||
} |
|||
@ -0,0 +1,6 @@ |
|||
#include <wctype.h> |
|||
|
|||
wint_t iswblank_l(wint_t c, locale_t l) |
|||
{ |
|||
return iswblank(c); |
|||
} |
|||
@ -0,0 +1,6 @@ |
|||
#include <wctype.h> |
|||
|
|||
wint_t iswcntrl_l(wint_t c, locale_t l) |
|||
{ |
|||
return iswcntrl(c); |
|||
} |
|||
@ -0,0 +1,6 @@ |
|||
#include <wctype.h> |
|||
|
|||
wint_t iswctype_l(wint_t c, wctype_t t, locale_t l) |
|||
{ |
|||
return iswctype(c, t); |
|||
} |
|||
@ -0,0 +1,6 @@ |
|||
#include <wctype.h> |
|||
|
|||
wint_t iswdigit_l(wint_t c, locale_t l) |
|||
{ |
|||
return iswdigit(c); |
|||
} |
|||
@ -0,0 +1,6 @@ |
|||
#include <wctype.h> |
|||
|
|||
wint_t iswgraph_l(wint_t c, locale_t l) |
|||
{ |
|||
return iswgraph(c); |
|||
} |
|||
@ -0,0 +1,6 @@ |
|||
#include <wctype.h> |
|||
|
|||
wint_t iswlower_l(wint_t c, locale_t l) |
|||
{ |
|||
return iswlower(c); |
|||
} |
|||
@ -0,0 +1,6 @@ |
|||
#include <wctype.h> |
|||
|
|||
wint_t iswprint_l(wint_t c, locale_t l) |
|||
{ |
|||
return iswprint(c); |
|||
} |
|||
@ -0,0 +1,6 @@ |
|||
#include <wctype.h> |
|||
|
|||
wint_t iswpunct_l(wint_t c, locale_t l) |
|||
{ |
|||
return iswpunct(c); |
|||
} |
|||
@ -0,0 +1,6 @@ |
|||
#include <wctype.h> |
|||
|
|||
wint_t iswspace_l(wint_t c, locale_t l) |
|||
{ |
|||
return iswspace(c); |
|||
} |
|||
@ -0,0 +1,6 @@ |
|||
#include <wctype.h> |
|||
|
|||
wint_t iswupper_l(wint_t c, locale_t l) |
|||
{ |
|||
return iswupper(c); |
|||
} |
|||
@ -0,0 +1,6 @@ |
|||
#include <wctype.h> |
|||
|
|||
wint_t iswxdigit_l(wint_t c, locale_t l) |
|||
{ |
|||
return iswxdigit(c); |
|||
} |
|||
@ -0,0 +1,6 @@ |
|||
#include <wctype.h> |
|||
|
|||
wint_t towctrans_l(wint_t c, wctrans_t t, locale_t l) |
|||
{ |
|||
return towctrans(c, t); |
|||
} |
|||
@ -0,0 +1,6 @@ |
|||
#include <wctype.h> |
|||
|
|||
wint_t towlower_l(wint_t c, locale_t l) |
|||
{ |
|||
return towlower(c); |
|||
} |
|||
@ -0,0 +1,6 @@ |
|||
#include <wctype.h> |
|||
|
|||
wint_t towupper_l(wint_t c, locale_t l) |
|||
{ |
|||
return towupper(c); |
|||
} |
|||
@ -0,0 +1,6 @@ |
|||
#include <wctype.h> |
|||
|
|||
wctrans_t wctrans_l(const char *s, locale_t l) |
|||
{ |
|||
return wctrans(s); |
|||
} |
|||
@ -0,0 +1,6 @@ |
|||
#include <wctype.h> |
|||
|
|||
wctype_t wctype_l(const char *s, locale_t l) |
|||
{ |
|||
return wctype(s); |
|||
} |
|||
Loading…
Reference in new issue