summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugin.c1
-rw-r--r--apps/plugin.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 983e4991b9..6c487f97fe 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -146,6 +146,7 @@ static struct plugin_api rockbox_api = {
146 snprintf, 146 snprintf,
147 strcpy, 147 strcpy,
148 strlen, 148 strlen,
149 strrchr,
149 memset, 150 memset,
150 memcpy, 151 memcpy,
151#ifndef SIMULATOR 152#ifndef SIMULATOR
diff --git a/apps/plugin.h b/apps/plugin.h
index d9b32055d6..e4ec910006 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -174,6 +174,7 @@ struct plugin_api {
174 int (*snprintf)(char *buf, size_t size, const char *fmt, ...); 174 int (*snprintf)(char *buf, size_t size, const char *fmt, ...);
175 char* (*strcpy)(char *dst, const char *src); 175 char* (*strcpy)(char *dst, const char *src);
176 size_t (*strlen)(const char *str); 176 size_t (*strlen)(const char *str);
177 char * (*strrchr)(const char *s, int c);
177 void* (*memset)(void *dst, int c, size_t length); 178 void* (*memset)(void *dst, int c, size_t length);
178 void* (*memcpy)(void *out, const void *in, size_t n); 179 void* (*memcpy)(void *out, const void *in, size_t n);
179#ifndef SIMULATOR 180#ifndef SIMULATOR