summaryrefslogtreecommitdiffstats
path: root/apps/codecs
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2007-05-07 11:09:45 +0000
committerDave Chapman <dave@dchapman.com>2007-05-07 11:09:45 +0000
commit9a011f3a80e93c7a70f6f0397a07c74df84b7c5d (patch)
tree0937c1b6b54c67c6b3bfbe83c27c2f467f361a94 /apps/codecs
parentc5ec5f2c727a40718bdc5691c079b280d3f6a1ad (diff)
downloadrockbox-9a011f3a80e93c7a70f6f0397a07c74df84b7c5d.tar.gz
rockbox-9a011f3a80e93c7a70f6f0397a07c74df84b7c5d.zip
Clean up the codec API - remove all unused (and in many cases inappropriate) functions, move functions used only by encoders into the HAVE_RECORDING part of the API and document the reasons for the more unexpected functions being present.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13343 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
-rw-r--r--apps/codecs/lib/codeclib.c5
-rw-r--r--apps/codecs/lib/codeclib.h1
2 files changed, 0 insertions, 6 deletions
diff --git a/apps/codecs/lib/codeclib.c b/apps/codecs/lib/codeclib.c
index 125c4663c8..7f822f49ef 100644
--- a/apps/codecs/lib/codeclib.c
+++ b/apps/codecs/lib/codeclib.c
@@ -104,11 +104,6 @@ int strcmp(const char *s1, const char *s2)
return(ci->strcmp(s1,s2));
}
-int strncasecmp(const char *s1, const char *s2, size_t n)
-{
- return(ci->strncasecmp(s1,s2,n));
-}
-
void *memcpy(void *dest, const void *src, size_t n)
{
return(ci->memcpy(dest,src,n));
diff --git a/apps/codecs/lib/codeclib.h b/apps/codecs/lib/codeclib.h
index 366d30e064..296c8cdae8 100644
--- a/apps/codecs/lib/codeclib.h
+++ b/apps/codecs/lib/codeclib.h
@@ -47,7 +47,6 @@ size_t strlen(const char *s);
char *strcpy(char *dest, const char *src);
char *strcat(char *dest, const char *src);
int strcmp(const char *, const char *);
-int strcasecmp(const char *, const char *);
void qsort(void *base, size_t nmemb, size_t size, int(*compar)(const void *, const void *));