From 4a18657738121723a93fa7bb941ab168374954ad Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Wed, 25 Feb 2004 20:30:50 +0000 Subject: [PATCH] Forgot to add this one. --- lib/str_lower.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 lib/str_lower.c 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 +}; -- 2.39.2