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