]> mj.ucw.cz Git - libucw.git/blob - lib/str_upper.c
sign mismatch fixed
[libucw.git] / lib / str_upper.c
1 /*
2  *      Sherlock Library -- Uppercase Map
3  *
4  *      (c) 1997 Martin Mares <mj@ucw.cz>
5  */
6
7 #include "lib/chartype.h"
8
9 unsigned char _c_upper[256] = {
10 #define CHAR(code,upper,unacc,acc,cat) upper,
11 #include "lib/charmap.h"
12 #undef CHAR
13 };