1
0
Fork 0
forked from len0rd/rockbox

Added comments, Replay Gain, and resume/bookmarks for FLAC.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7253 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Ryan Jackson 2005-07-28 18:43:33 +00:00
parent 773c28e489
commit b301b43825
8 changed files with 304 additions and 175 deletions

View file

@ -70,6 +70,31 @@ void* codec_realloc(void* ptr, size_t size)
return(x);
}
size_t strlen(const char *s)
{
return(local_rb->strlen(s));
}
char *strcpy(char *dest, const char *src)
{
return(local_rb->strcpy(dest,src));
}
char *strcat(char *dest, const char *src)
{
return(local_rb->strcat(dest,src));
}
int strcmp(const char *s1, const char *s2)
{
return(local_rb->strcmp(s1,s2));
}
int strncasecmp(const char *s1, const char *s2, size_t n)
{
return(local_rb->strncasecmp(s1,s2,n));
}
void *memcpy(void *dest, const void *src, size_t n)
{
return(local_rb->memcpy(dest,src,n));

View file

@ -49,6 +49,12 @@ void* codec_calloc(size_t nmemb, size_t size);
void* codec_alloca(size_t size);
void* codec_realloc(void* ptr, size_t size);
void codec_free(void* ptr);
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 *memcpy(void *dest, const void *src, size_t n);
void *memset(void *s, int c, size_t n);
int memcmp(const void *s1, const void *s2, size_t n);