]> mj.ucw.cz Git - libucw.git/commitdiff
Forgot to add this one.
authorMartin Mares <mj@ucw.cz>
Wed, 25 Feb 2004 20:30:50 +0000 (20:30 +0000)
committerMartin Mares <mj@ucw.cz>
Wed, 25 Feb 2004 20:30:50 +0000 (20:30 +0000)
lib/str_lower.c [new file with mode: 0644]

diff --git a/lib/str_lower.c b/lib/str_lower.c
new file mode 100644 (file)
index 0000000..6d2321b
--- /dev/null
@@ -0,0 +1,16 @@
+/*
+ *     Sherlock Library -- Lowercase Map
+ *
+ *     (c) 1997--2004 Martin Mares <mj@ucw.cz>
+ *
+ *     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
+};