Files
ac-decomp/include/MSL_C/printf.h
T
2025-01-18 07:09:37 -05:00

20 lines
301 B
C

#ifndef MSL_PRINTF_H
#define MSL_PRINTF_H
#include "types.h"
// #include "va_args.h"
#ifdef __cplusplus
extern "C" {
#endif
extern int vprintf(const char*, va_list);
extern int printf(const char*, ...);
int snprintf(char* s, size_t n, const char* format, ...);
#ifdef __cplusplus
}
#endif
#endif