summaryrefslogtreecommitdiff
path: root/src/code/printutils.c
blob: a965e18a86e6982b3151a4071ad9c63b5005712c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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);
}