summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-07-12 11:06:38 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-07-12 11:06:38 +0000
commitdb4fb9558535d880179701d3bc7520bc8c7d69ce (patch)
treedd400df2c2bbea0629a5d56976c41dad3ebed2a8 /apps/plugin.h
parent2d8fd9cf8af10471800745e50895c8e0d90c6bc8 (diff)
downloadrockbox-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 'apps/plugin.h')
-rw-r--r--apps/plugin.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 36eccfe86f..c572ccbf65 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -285,7 +285,7 @@ struct plugin_api {
285 int (*strncasecmp)(const char *s1, const char *s2, size_t n); 285 int (*strncasecmp)(const char *s1, const char *s2, size_t n);
286 void* (*memset)(void *dst, int c, size_t length); 286 void* (*memset)(void *dst, int c, size_t length);
287 void* (*memcpy)(void *out, const void *in, size_t n); 287 void* (*memcpy)(void *out, const void *in, size_t n);
288 const char *_ctype_; 288 const unsigned char *_ctype_;
289 int (*atoi)(const char *str); 289 int (*atoi)(const char *str);
290 char *(*strchr)(const char *s, int c); 290 char *(*strchr)(const char *s, int c);
291 char *(*strcat)(char *s1, const char *s2); 291 char *(*strcat)(char *s1, const char *s2);