]> mj.ucw.cz Git - libucw.git/blob - lib/str_upper.c
Added very simple functions for emulating a fastbuf stream over a static
[libucw.git] / lib / str_upper.c
1 /*
2  *      Sherlock Library -- Uppercase Map
3  *
4  *      (c) 1997 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,unacc,acc,cat) upper,
14 #include "lib/charmap.h"
15 #undef CHAR
16 };