diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-05-11 18:14:42 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-05-11 18:14:42 -0400 |
commit | 7eb5c2b9c3de741304fc6222c35a6fb87a0f5dd9 (patch) | |
tree | 1bd111e0daf9f57a5dd07d1943c67d631e7d850b /arm9/lib/include/OS_printf.h | |
parent | 60ab234010d172d888d2444cd426e0e8463a110f (diff) | |
parent | 2746b162878a466fa50e3a2945b1f30642ef186f (diff) |
Merge branch 'master' of https://github.com/martmists/pokediamond into pikalax_work
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_ |