wut/include/coreinit/internal.h
Daniel K. O. 81db8e5dd4
Some checks failed
C/C++ CI / ubuntu-latest (push) Has been cancelled
Add WUT_FORMAT_PRINTF and fix some format string bugs. (#404)
2025-05-17 22:35:56 +02:00

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