diff options
author | Demki <mordbz@gmail.com> | 2020-05-10 02:02:09 +0300 |
---|---|---|
committer | Demki <mordbz@gmail.com> | 2020-05-10 02:02:09 +0300 |
commit | 8f09b9e7138325b4ec2255a1c0a58f385e586f1b (patch) | |
tree | f4cbb55bf740407cd59389ce194b04bd6aa34236 /arm9/lib/include/OS_printf.h | |
parent | e1c517d34810fe83865e896a23e46a2ea089261f (diff) |
decompilation of OS_printf.c
matching other than OS_VSNPrintf
Diffstat (limited to 'arm9/lib/include/OS_printf.h')
-rw-r--r-- | arm9/lib/include/OS_printf.h | 7 |
1 files changed, 7 insertions, 0 deletions
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_ |