mirror of
https://github.com/encounter/ac-decomp.git
synced 2026-03-30 10:57:04 -07:00
20 lines
300 B
C
20 lines
300 B
C
#ifndef MSL_PRINTF_H
|
|
#define MSL_PRINTF_H
|
|
|
|
#include "types.h"
|
|
#include "va_args.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern void vprintf(const char*, va_list);
|
|
extern void printf(const char*, ...);
|
|
int snprintf(char* s, size_t n, const char* format, ...);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|