mirror of
https://github.com/diegocr/libnix.git
synced 2026-09-11 19:25:43 +00:00
12 lines
208 B
C
12 lines
208 B
C
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
|
|
int sprintf(char *s,const char *format,...)
|
|
{ int retval;
|
|
va_list args;
|
|
va_start(args,format);
|
|
retval=vsprintf(s,format,args);
|
|
va_end(args);
|
|
return retval;
|
|
}
|