mirror of
https://github.com/HackerN64/HackerOoT.git
synced 2026-01-21 10:37:37 -08:00
10 lines
164 B
C
10 lines
164 B
C
#ifndef STDIO_H
|
|
#define STDIO_H
|
|
|
|
#include "stdarg.h"
|
|
|
|
int sprintf(char* dst, const char* fmt, ...);
|
|
int vsprintf(char* dst, const char* fmt, va_list args);
|
|
|
|
#endif
|