X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Fstr_upper.c;h=e527956e41b36bcbae26bc5fb6059d2189e2a1b2;hb=b4d79987a979bcbf749294c706fdc8c4ae8f9304;hp=2742cd4a82e72f449bb3455987732b8e05435bf7;hpb=03846211ba84582b133a985200502a39462dfe66;p=libucw.git diff --git a/lib/str_upper.c b/lib/str_upper.c index 2742cd4a..e527956e 100644 --- a/lib/str_upper.c +++ b/lib/str_upper.c @@ -1,13 +1,16 @@ /* - * Sherlock Library -- Uppercase Map + * UCW Library -- Uppercase Map * - * (c) 1997 Martin Mares, + * (c) 1997--2004 Martin Mares + * + * This software may be freely distributed and used according to the terms + * of the GNU Lesser General Public License. */ -#include "string.h" +#include "lib/chartype.h" -unsigned char _c_upper[256] = { -#define CHAR(code,upper,unacc,acc,cat) upper, -#include "charmap.h" +const unsigned char _c_upper[256] = { +#define CHAR(code,upper,lower,cat) upper, +#include "lib/charmap.h" #undef CHAR };