Start decompiling printfunc.c
This commit is contained in:
parent
39286d7a62
commit
c21da819d8
8 changed files with 194 additions and 44 deletions
12
include/stdio.h
Normal file
12
include/stdio.h
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue