diff options
| author | Random <28494085+Random06457@users.noreply.github.com> | 2020-04-08 18:36:15 +0200 |
|---|---|---|
| committer | Random <28494085+Random06457@users.noreply.github.com> | 2020-04-08 18:36:15 +0200 |
| commit | d0cf6e153b4f47f04f73656a1534314208b2f596 (patch) | |
| tree | 083231f01a3ba973764514d43bc30579bbcf5b20 /src/code/printutils.c | |
| parent | 0a25ab74c4f3399c7fbcedf931604960cedd798f (diff) | |
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
Diffstat (limited to 'src/code/printutils.c')
| -rw-r--r-- | src/code/printutils.c | 14 |
1 files changed, 14 insertions, 0 deletions
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 <global.h> + +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); +} |
