]> mj.ucw.cz Git - libucw.git/blob - lib/char-cat.c
1b8e223b2946f76e1e07690be83e2c04286836c8
[libucw.git] / lib / char-cat.c
1 /*
2  *      UCW Library -- Character Classes
3  *
4  *      (c) 1998--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 "lib/chartype.h"
11
12 const unsigned char _c_cat[256] = {
13 #define CHAR(code,upper,lower,cat) cat,
14 #include "lib/char-map.h"
15 #undef CHAR
16 };