Add $ and ` for escaping and reorder it according to the ascii values
[midnight-commander.git] / slang / sllower.c
blob8f7107ff9e1b3f034596461bbbaad334eb0d26f6
1 #include "slinclud.h"
2 #include <ctype.h>
4 #include "slang.h"
5 #include "_slang.h"
7 #define DEFINE_PSLWC_TOLOWER_TABLE
8 #include "sllower.h"
10 #define MODE_VARIABLE _pSLinterp_UTF8_Mode
11 SLwchar_Type SLwchar_tolower (SLwchar_Type ch)
13 if (MODE_VARIABLE)
14 return ch + SL_TOLOWER_LOOKUP(ch);
16 return tolower(ch);