mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-05 11:15:04 +00:00
10 lines
198 B
C++
10 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);
|
|
|
|
} }
|