1
0
Fork 0
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:
Maurus Cuelenaere 2009-08-21 22:54:23 +00:00
parent 249392c2d3
commit 20b0dd2788
5 changed files with 321 additions and 206 deletions

View file

@ -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);
}