diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-02-09 12:27:44 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-02-09 12:27:44 +0000 |
| commit | f06ed4ad0cfc30c1be3bda92cb5df90859f36b94 (patch) | |
| tree | 4455fa616857d1f6dab1c0331f4a6a338cf0ffc1 /apps/plugin.c | |
| parent | b5a5d2cecc94133922d544ec1787ac85578dd7e5 (diff) | |
| download | rockbox-f06ed4ad0cfc30c1be3bda92cb5df90859f36b94.zip rockbox-f06ed4ad0cfc30c1be3bda92cb5df90859f36b94.tar.gz rockbox-f06ed4ad0cfc30c1be3bda92cb5df90859f36b94.tar.bz2 rockbox-f06ed4ad0cfc30c1be3bda92cb5df90859f36b94.tar.xz | |
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.c')
| -rw-r--r-- | apps/plugin.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 69e84c1..f595ed7 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -263,6 +263,7 @@ static const struct plugin_api rockbox_api = { the API gets incompatible */ strchr, + strcat, }; int plugin_load(const char* plugin, void* parameter) |