12 lines
180 B
C
12 lines
180 B
C
/*
|
|
* vsprintf.c
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
int vsprintf(char *buffer, const char *format, va_list ap)
|
|
{
|
|
return vsnprintf(buffer, ~(size_t) 0, format, ap);
|
|
}
|