From d0cf6e153b4f47f04f73656a1534314208b2f596 Mon Sep 17 00:00:00 2001 From: Random <28494085+Random06457@users.noreply.github.com> Date: Wed, 8 Apr 2020 18:36:15 +0200 Subject: Decompile sleep.c and printutils.c - Decompile sleep.c (OK) - Decompile printutils.c (OK) - Fix 1 non-matching in z_room.c - Get rid of some magic numbers --- src/code/printutils.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/code/printutils.c (limited to 'src/code/printutils.c') diff --git a/src/code/printutils.c b/src/code/printutils.c new file mode 100644 index 000000000..e1e70f076 --- /dev/null +++ b/src/code/printutils.c @@ -0,0 +1,14 @@ +#include + +void PrintUtils_VPrintf(char** arg0, const char* fmt, va_list args) +{ + _Printf(*arg0, arg0, fmt, args); +} + +void PrintUtils_Printf(void* arg0, const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + + PrintUtils_VPrintf(arg0, fmt, args); +} -- cgit v1.2.3