]> mj.ucw.cz Git - libucw.git/blob - lib/str_ctype.c
Merged extended mempool from the dev-playground branch.
[libucw.git] / lib / str_ctype.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/charmap.h"
15 #undef CHAR
16 };