SuperMarioOdysseyOnline/include/nn/util.h

11 lines
198 B
C
Raw Normal View History

2022-06-16 21:33:18 +00:00
#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);
} }