New repo setup
This commit is contained in:
12
src/stdio/print/sprintf.c
Normal file
12
src/stdio/print/sprintf.c
Normal file
@@ -0,0 +1,12 @@
|
||||
#include "stdio.h"
|
||||
|
||||
/*started by Kyle Clements*/
|
||||
|
||||
int sprintf(char *dest, const char *format, ...){
|
||||
|
||||
va_list valist;
|
||||
va_start(valist, format);
|
||||
vsprintf(dest, format, valist);
|
||||
va_end(valist);
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user