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