Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1271 → Rev 1272

/uspace/trunk/libc/generic/io/vsnprintf.c
82,7 → 82,6
 
int vsnprintf(char *str, size_t size, const char *fmt, va_list ap)
{
size_t retval;
struct vsnprintf_data data = {size, 0, str};
struct printf_spec ps = {(int(*)(void *, size_t, void *))vsnprintf_write, &data};