1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2024-11-14 21:40:03 +00:00
oot/include/libc64/aprintf.h
Dragorn421 76d97ac18a
[headers 14] libc64 headers (#2177)
* [headers 14] libc64 headers

* bss

* bss
2024-09-11 18:02:42 +09:00

11 lines
242 B
C

#ifndef LIBC64_APRINTF_H
#define LIBC64_APRINTF_H
#include "ultra64.h"
#include "stdarg.h"
s32 PrintUtils_VPrintf(PrintCallback* pfn, const char* fmt, va_list args);
s32 PrintUtils_Printf(PrintCallback* pfn, const char* fmt, ...);
#endif