12 lines
203 B
C
12 lines
203 B
C
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
|
|
int fprintf(FILE *restrict f, const char *restrict fmt, ...)
|
|
{
|
|
int ret;
|
|
va_list ap;
|
|
va_start(ap, fmt);
|
|
ret = vfprintf(f, fmt, ap);
|
|
va_end(ap);
|
|
return ret;
|
|
}
|