mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
23 lines
435 B
C
23 lines
435 B
C
#ifndef MSL_PRINTF_H
|
|
#define MSL_PRINTF_H
|
|
|
|
#include "types.h"
|
|
// #include "va_args.h"
|
|
#include "libc/stdarg.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern int vprintf(const char*, va_list);
|
|
extern int vsprintf(char*, const char*, va_list);
|
|
extern int vsnprintf(char*, size_t, const char*, va_list);
|
|
extern int printf(const char*, ...);
|
|
int snprintf(char* s, size_t n, const char* format, ...);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|