]> mj.ucw.cz Git - libucw.git/blob - ucw/char-upper.c
Documented chartype.h and unicode.h.
[libucw.git] / ucw / char-upper.c
1 /*
2  *      UCW Library -- Uppercase Map
3  *
4  *      (c) 1997--2004 Martin Mares <mj@ucw.cz>
5  *
6  *      This software may be freely distributed and used according to the terms
7  *      of the GNU Lesser General Public License.
8  */
9
10 #include "ucw/lib.h"
11 #include "ucw/chartype.h"
12
13 const unsigned char _c_upper[256] = {
14 #define CHAR(code,upper,lower,cat) upper,
15 #include "ucw/char-map.h"
16 #undef CHAR
17 };