mirror of
https://github.com/izzy2lost/2ship2harkinian-Android.git
synced 2026-06-19 01:20:08 -07:00
15 lines
308 B
C
15 lines
308 B
C
#include "global.h"
|
|
|
|
void PrintUtils_VPrintf(PrintCallback* pfn, const char* fmt, va_list args) {
|
|
_Printf(*pfn, pfn, fmt, args);
|
|
}
|
|
|
|
void PrintUtils_Printf(PrintCallback* pfn, const char* fmt, ...) {
|
|
va_list args;
|
|
va_start(args, fmt);
|
|
|
|
PrintUtils_VPrintf(pfn, fmt, args);
|
|
|
|
va_end(args);
|
|
}
|