From: Martin Mares Date: Wed, 25 Feb 2004 20:30:50 +0000 (+0000) Subject: Forgot to add this one. X-Git-Tag: holmes-import~1109 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=4a18657738121723a93fa7bb941ab168374954ad;p=libucw.git Forgot to add this one. --- diff --git a/lib/str_lower.c b/lib/str_lower.c new file mode 100644 index 00000000..6d2321b6 --- /dev/null +++ b/lib/str_lower.c @@ -0,0 +1,16 @@ +/* + * Sherlock Library -- Lowercase Map + * + * (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 "lib/chartype.h" + +const unsigned char _c_lower[256] = { +#define CHAR(code,upper,lower,cat) lower, +#include "lib/charmap.h" +#undef CHAR +};