mirror of
https://github.com/devkitPro/wut.git
synced 2026-03-30 22:05:15 -05:00
15 lines
193 B
C
15 lines
193 B
C
#pragma once
|
|
#include <wut.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int
|
|
__os_snprintf(char *buf, size_t n, const char *format, ... )
|
|
WUT_FORMAT_PRINTF(3, 4);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|