New repo setup

This commit is contained in:
2024-05-28 14:50:00 -05:00
commit f68c320396
51 changed files with 4612 additions and 0 deletions

12
src/stdio/print/sprintf.c Normal file
View 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;
}