blob: e6aad4bc794b221cb4f5a65e1ab6662f7fc152ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#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
|