1
0
mirror of https://github.com/zeldaret/oot.git synced 2024-09-22 21:35:27 +00:00
oot/src/code/printutils.c

15 lines
277 B
C
Raw Normal View History

#include <global.h>
void PrintUtils_VPrintf(char** arg0, const char* fmt, va_list args)
{
_Printf(*arg0, arg0, fmt, args);
}
void PrintUtils_Printf(void* arg0, const char* fmt, ...)
{
va_list args;
va_start(args, fmt);
PrintUtils_VPrintf(arg0, fmt, args);
}