summaryrefslogtreecommitdiff
path: root/src/ctype/wctrans.c
blob: 03e9fd6ab6b291b197ff0a2faaba5434007e7511 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <wctype.h>
#include <string.h>

wctrans_t wctrans(const char *class)
{
	if (!strcmp(class, "toupper")) return 1;
	if (!strcmp(class, "tolower")) return 2;
	return 0;
}

wint_t towctrans(wint_t wc, wctrans_t trans)
{
	if (trans == 1) return towupper(wc);
	if (trans == 2) return towlower(wc);
	return wc;
}