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