mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 21:40:03 +00:00
76d97ac18a
* [headers 14] libc64 headers * bss * bss
11 lines
204 B
C
11 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
|