You've already forked marioparty4
mirror of
https://github.com/encounter/marioparty4.git
synced 2026-03-30 11:29:35 -07:00
12 lines
269 B
C
12 lines
269 B
C
#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 |