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