mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
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
This commit is contained in:
parent
c5ec5f2c72
commit
9a011f3a80
4 changed files with 52 additions and 209 deletions
|
@ -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));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue