12 lines
226 B
C
12 lines
226 B
C
|
|
#include <stdio.h>
|
||
|
|
#include "__printf.h"
|
||
|
|
|
||
|
|
int sprintf(char *buf, const char *restrict format, ...)
|
||
|
|
{
|
||
|
|
va_list args;
|
||
|
|
va_start(args, format);
|
||
|
|
int len = vsprintf(buf, format, args);
|
||
|
|
va_end(args);
|
||
|
|
return len;
|
||
|
|
}
|