From 8f09b9e7138325b4ec2255a1c0a58f385e586f1b Mon Sep 17 00:00:00 2001 From: Demki Date: Sun, 10 May 2020 02:02:09 +0300 Subject: decompilation of OS_printf.c matching other than OS_VSNPrintf --- arm9/lib/include/OS_printf.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'arm9/lib/include/OS_printf.h') diff --git a/arm9/lib/include/OS_printf.h b/arm9/lib/include/OS_printf.h index 7c02252b..7c2e09b4 100644 --- a/arm9/lib/include/OS_printf.h +++ b/arm9/lib/include/OS_printf.h @@ -5,4 +5,11 @@ #define OS_TPanic(...) OS_Terminate() #define OS_TWarning(...) ((void)0) +#include "types.h" + +s32 OS_SPrintf(s8 *buffer, const s8 *format, ...); +s32 OS_VSPrintf(s8 *buffer, const s8 *format, void *args); +s32 OS_SNPrintf(s8 *buffer, s32 bufsz, const s8 *format, ...); +s32 OS_VSNPrintf(s8 *buffer, s32 bufsz, const s8 *format, void *args); + #endif //NITRO_OS_PRINTF_H_ -- cgit v1.2.3