Vhex-kernel/src/lib/libc/stdio/vsprintf.c

7 lines
144 B
C

#include <stdio.h>
int vsprintf(char *restrict str, const char *restrict format, va_list ap)
{
return (vsnprintf(str, 65535, format, ap));
}