backported #199 branch
[midnight-commander.git] / slang / slupper.c
blobc493d72489a16fad96ea8542b39a25923c5cc44e
1 #include "slinclud.h"
2 #include <ctype.h>
4 #include "slang.h"
5 #include "_slang.h"
7 #define DEFINE_PSLWC_TOUPPER_TABLE
8 #include "slupper.h"
11 #define MODE_VARIABLE _pSLinterp_UTF8_Mode
12 SLwchar_Type SLwchar_toupper (SLwchar_Type ch)
14 if (MODE_VARIABLE)
15 return ch + SL_TOUPPER_LOOKUP(ch);
17 return toupper (ch);