mirror of
https://github.com/vivier/EMILE.git
synced 2025-02-09 11:31:04 +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;
|
||
|
}
|