Start decompiling printfunc.c

This commit is contained in:
gamemasterplc 2023-11-23 15:55:25 -06:00
parent 39286d7a62
commit c21da819d8
8 changed files with 194 additions and 44 deletions

12
include/stdio.h Normal file
View file

@ -0,0 +1,12 @@
#ifndef _STDIO_H_
#define _STDIO_H_
#include "stdarg.h"
int puts(const char* s);
int printf(const char*, ...);
int sprintf(char* s, const char* format, ...);
int vprintf(const char* format, va_list arg);
int vsprintf(char* s, const char* format, va_list arg);
#endif