summaryrefslogtreecommitdiffstats
path: root/firmware
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-06-17 13:51:21 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-06-17 13:51:21 +0000
commitaca6b2ef22a119780b1197f3c6c85323ca228f0e (patch)
treee932e74211dd95fa406932ffa047238116fd3604 /firmware
parent2f4b5960c62ca812f557fc653f4fe0e55ab0d2ef (diff)
downloadrockbox-aca6b2ef22a119780b1197f3c6c85323ca228f0e.tar.gz
rockbox-aca6b2ef22a119780b1197f3c6c85323ca228f0e.zip
we need ctype
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1045 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/common/ctype.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/firmware/common/ctype.c b/firmware/common/ctype.c
new file mode 100644
index 0000000000..139c6a73e8
--- /dev/null
+++ b/firmware/common/ctype.c
@@ -0,0 +1,21 @@
+#include <ctype.h>
+
+char _ctype_[]={
+ _C, _C, _C, _C, _C, _C, _C, _C,
+ _C, _C|_S, _C|_S, _C|_S, _C|_S, _C|_S, _C, _C,
+ _C, _C, _C, _C, _C, _C, _C, _C,
+ _C, _C, _C, _C, _C, _C, _C, _C,
+ _S|_B, _P, _P, _P, _P, _P, _P, _P,
+ _P, _P, _P, _P, _P, _P, _P, _P,
+ _N, _N, _N, _N, _N, _N, _N, _N,
+ _N, _N, _P, _P, _P, _P, _P, _P,
+ _P, _U|_X, _U|_X, _U|_X, _U|_X, _U|_X, _U|_X, _U,
+ _U, _U, _U, _U, _U, _U, _U, _U,
+ _U, _U, _U, _U, _U, _U, _U, _U,
+ _U, _U, _U, _P, _P, _P, _P, _P,
+ _P, _L|_X, _L|_X, _L|_X, _L|_X, _L|_X, _L|_X, _L,
+ _L, _L, _L, _L, _L, _L, _L, _L,
+ _L, _L, _L, _L, _L, _L, _L, _L,
+ _L, _L, _L, _P, _P, _P, _P, _C
+};
+