forked from len0rd/rockbox
A new implementation of logf, logfdisplay and logfdump.
Flyspray: FS#10528 Author: Amaury Pouly git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22462 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
249392c2d3
commit
20b0dd2788
5 changed files with 321 additions and 206 deletions
|
|
@ -292,3 +292,8 @@ int fdprintf(int fd, const char *fmt, ...)
|
|||
return fpr.bytes; /* return 0 on error */
|
||||
}
|
||||
|
||||
int vfnprintf(int (*push)(void *userp, unsigned char data), void *userp, const char *fmt, va_list ap)
|
||||
{
|
||||
return format(push, userp, fmt, ap);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue