aboutsummaryrefslogtreecommitdiffstats
path: root/io/sprintf.c
blob: cac6d80cd801a4595223f29677fc35458e8d3020 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include "io.h"

int sprintf(char *string, char const *restrict format, ...)
{
	va_list arg;
	va_start(arg, format);
	int lenght = vsprintf(string, format, arg);
	va_end(arg);
	return lenght;
}