summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-02-09 12:27:44 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-02-09 12:27:44 +0000
commitf06ed4ad0cfc30c1be3bda92cb5df90859f36b94 (patch)
tree4455fa616857d1f6dab1c0331f4a6a338cf0ffc1 /apps/plugin.h
parentb5a5d2cecc94133922d544ec1787ac85578dd7e5 (diff)
downloadrockbox-f06ed4ad0cfc30c1be3bda92cb5df90859f36b94.tar.gz
rockbox-f06ed4ad0cfc30c1be3bda92cb5df90859f36b94.zip
strcat() added to the plugin API
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5867 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index cb9bdb7f9d..2ae325a6d8 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -299,6 +299,8 @@ struct plugin_api {
299 the API gets incompatible */ 299 the API gets incompatible */
300 300
301 char (*strchr)(const char *s, int c); 301 char (*strchr)(const char *s, int c);
302 char (*strcat)(char *s1, const char *s2);
303
302}; 304};
303 305
304/* defined by the plugin loader (plugin.c) */ 306/* defined by the plugin loader (plugin.c) */