summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-06-30 10:39:28 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-06-30 10:39:28 +0000
commit510a18d30276e84fd4446cef1476d69d5273513a (patch)
treec8514034ade71c881312019af48b5359702b1bb5 /apps/plugin.h
parente8e953f5d5c11bed80df12270b6b2abc464abaad (diff)
downloadrockbox-510a18d30276e84fd4446cef1476d69d5273513a.tar.gz
rockbox-510a18d30276e84fd4446cef1476d69d5273513a.zip
added strncmp() to the plugin API, based the patch 1170215 by Rick La Charité
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6943 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 507d36d4e9..0010d6d3a0 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -399,6 +399,7 @@ struct plugin_api {
399#ifdef ROCKBOX_HAS_LOGF 399#ifdef ROCKBOX_HAS_LOGF
400 void (*logf)(const char *fmt, ...); 400 void (*logf)(const char *fmt, ...);
401#endif 401#endif
402 int (*strncmp)(const char *, const char *, size_t);
402}; 403};
403 404
404int plugin_load(const char* plugin, void* parameter); 405int plugin_load(const char* plugin, void* parameter);