9 lines
177 B
C
9 lines
177 B
C
#include <limits.h>
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
|
|
int vfprintf(FILE *stream, const char *format, va_list ap)
|
|
{
|
|
return vsnprintf(NULL, (size_t)stream, format, ap);
|
|
}
|