]> mj.ucw.cz Git - libucw.git/blob - lib/str_upper.c
conf: parsing IP address fixed
[libucw.git] / lib / str_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 "lib/chartype.h"
11
12 const unsigned char _c_upper[256] = {
13 #define CHAR(code,upper,lower,cat) upper,
14 #include "lib/charmap.h"
15 #undef CHAR
16 };