1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2024-11-15 06:06:04 +00:00
oot/include/libc64/aprintf.h

12 lines
242 B
C
Raw Normal View History

#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