mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
31 lines
628 B
C
31 lines
628 B
C
|
#include <wctype.h>
|
||
|
#include <string.h>
|
||
|
#include <locale.h>
|
||
|
|
||
|
wctrans_t wctrans(const char *class)
|
||
|
{
|
||
|
if (!strcmp(class, "toupper")) return (wctrans_t)1;
|
||
|
if (!strcmp(class, "tolower")) return (wctrans_t)2;
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
wint_t towctrans(wint_t wc, wctrans_t trans)
|
||
|
{
|
||
|
if (trans == (wctrans_t)1) return towupper(wc);
|
||
|
if (trans == (wctrans_t)2) return towlower(wc);
|
||
|
return wc;
|
||
|
}
|
||
|
|
||
|
wctrans_t __wctrans_l(const char *s, locale_t l)
|
||
|
{
|
||
|
return wctrans(s);
|
||
|
}
|
||
|
|
||
|
wint_t __towctrans_l(wint_t c, wctrans_t t, locale_t l)
|
||
|
{
|
||
|
return towctrans(c, t);
|
||
|
}
|
||
|
|
||
|
__weak_reference(__wctrans_l, wctrans_l);
|
||
|
__weak_reference(__towctrans_l, towctrans_l);
|