forked from len0rd/rockbox
Patch #1232549 by Ryan Jackson, adds seeking and comments to Vorbis playback
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7025 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
a10bb59331
commit
eaf8b2d76d
9 changed files with 471 additions and 33 deletions
|
|
@ -91,11 +91,7 @@ int memcmp(const void *s1, const void *s2, size_t n) {
|
|||
}
|
||||
|
||||
void* memchr(const void *s, int c, size_t n) {
|
||||
/* TO DO: Implement for Tremor */
|
||||
(void)s;
|
||||
(void)c;
|
||||
(void)n;
|
||||
return(NULL);
|
||||
return(local_rb->memchr(s,c,n));
|
||||
}
|
||||
|
||||
void* memmove(const void *s1, const void *s2, size_t n) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue