mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-17 17:05:09 +00:00
11 lines
198 B
C
11 lines
198 B
C
|
#pragma once
|
||
|
|
||
|
#include "../types.h"
|
||
|
|
||
|
namespace nn { namespace util {
|
||
|
|
||
|
s32 SNPrintf(char* s, ulong n, const char* format, ...);
|
||
|
s32 VSNPrintf(char* s, ulong n, const char* format, va_list arg);
|
||
|
|
||
|
} }
|