mirror of
https://github.com/vivier/EMILE.git
synced 2025-02-03 17:29:59 +00:00
15 lines
211 B
C
15 lines
211 B
C
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
|
|
int sprintf(char * s, const char * format, ...)
|
|
{
|
|
va_list params;
|
|
int r;
|
|
|
|
va_start(params, format);
|
|
r = vsprintf(s, format, params);
|
|
va_end(params);
|
|
|
|
return r;
|
|
}
|