mirror of
https://github.com/zeldaret/oot.git
synced 2024-12-02 07:46:01 +00:00
17 lines
349 B
C
17 lines
349 B
C
#include "global.h"
|
|
|
|
s32 PrintUtils_VPrintf(PrintCallback* pfn, const char* fmt, va_list args) {
|
|
return _Printf(*pfn, pfn, fmt, args);
|
|
}
|
|
|
|
s32 PrintUtils_Printf(PrintCallback* pfn, const char* fmt, ...) {
|
|
s32 ret;
|
|
va_list args;
|
|
va_start(args, fmt);
|
|
|
|
ret = PrintUtils_VPrintf(pfn, fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
return ret;
|
|
}
|