diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-07-12 11:06:38 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-07-12 11:06:38 +0000 |
commit | db4fb9558535d880179701d3bc7520bc8c7d69ce (patch) | |
tree | dd400df2c2bbea0629a5d56976c41dad3ebed2a8 /firmware | |
parent | 2d8fd9cf8af10471800745e50895c8e0d90c6bc8 (diff) | |
download | rockbox-db4fb9558535d880179701d3bc7520bc8c7d69ce.tar.gz rockbox-db4fb9558535d880179701d3bc7520bc8c7d69ce.zip |
make the ctype array unsigned so that bit 7 (octal 0200) can be set and
used properly without warnings
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7120 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/common/ctype.c | 36 | ||||
-rw-r--r-- | firmware/include/ctype.h | 2 |
2 files changed, 19 insertions, 19 deletions
diff --git a/firmware/common/ctype.c b/firmware/common/ctype.c index 651dacda86..6e9b4eb601 100644 --- a/firmware/common/ctype.c +++ b/firmware/common/ctype.c @@ -1,22 +1,22 @@ #include <ctype.h> -const char _ctype_[257]={ - 0, - _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 +const unsigned char _ctype_[257]={ + 0, + _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 }; diff --git a/firmware/include/ctype.h b/firmware/include/ctype.h index f884b09f81..e0d20cc672 100644 --- a/firmware/include/ctype.h +++ b/firmware/include/ctype.h @@ -39,7 +39,7 @@ int _EXFUN(_toupper, (int __c)); #ifdef PLUGIN #define _ctype_ (rb->_ctype_) #else -extern const char _ctype_[]; +extern const unsigned char _ctype_[257]; #endif #ifndef __cplusplus |