summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-07-12 11:04:57 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-07-12 11:04:57 +0000
commit2d8fd9cf8af10471800745e50895c8e0d90c6bc8 (patch)
treea7adef4dd798845c508493394c505a9111c354f5
parent526f7978e5b8a10baf1b26ddabc6456d9b6dcb23 (diff)
downloadrockbox-2d8fd9cf8af10471800745e50895c8e0d90c6bc8.tar.gz
rockbox-2d8fd9cf8af10471800745e50895c8e0d90c6bc8.zip
I find it weird that there is a private copy of this file here, but I'm
not fixing this now. I'm just making sure that this is in perfect sync with the firmware one by simply #including it here! git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7119 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/codecs/Tremor/ctype.c23
1 files changed, 1 insertions, 22 deletions
diff --git a/apps/codecs/Tremor/ctype.c b/apps/codecs/Tremor/ctype.c
index 651dacda86..9eb6eef80a 100644
--- a/apps/codecs/Tremor/ctype.c
+++ b/apps/codecs/Tremor/ctype.c
@@ -1,22 +1 @@
1#include <ctype.h> #include "../../../firmware/common/ctype.c"
2
3const char _ctype_[257]={
4 0,
5 _C, _C, _C, _C, _C, _C, _C, _C,
6 _C, _C|_S, _C|_S, _C|_S, _C|_S, _C|_S, _C, _C,
7 _C, _C, _C, _C, _C, _C, _C, _C,
8 _C, _C, _C, _C, _C, _C, _C, _C,
9 _S|_B, _P, _P, _P, _P, _P, _P, _P,
10 _P, _P, _P, _P, _P, _P, _P, _P,
11 _N, _N, _N, _N, _N, _N, _N, _N,
12 _N, _N, _P, _P, _P, _P, _P, _P,
13 _P, _U|_X, _U|_X, _U|_X, _U|_X, _U|_X, _U|_X, _U,
14 _U, _U, _U, _U, _U, _U, _U, _U,
15 _U, _U, _U, _U, _U, _U, _U, _U,
16 _U, _U, _U, _P, _P, _P, _P, _P,
17 _P, _L|_X, _L|_X, _L|_X, _L|_X, _L|_X, _L|_X, _L,
18 _L, _L, _L, _L, _L, _L, _L, _L,
19 _L, _L, _L, _L, _L, _L, _L, _L,
20 _L, _L, _L, _P, _P, _P, _P, _C
21};
22