mirror of https://github.com/zeldaret/tp.git
14 lines
455 B
C
14 lines
455 B
C
#ifndef MSL_COMMON_SRC_PRINTF_H
|
|
#define MSL_COMMON_SRC_PRINTF_H
|
|
|
|
#include "Runtime.PPCEABI.H/__va_arg.h"
|
|
#include "dolphin/types.h"
|
|
|
|
extern "C" size_t sprintf(const char*, const char*, ...);
|
|
extern "C" size_t snprintf(const char*, size_t, const char*, ...);
|
|
extern "C" size_t vsnprintf(char*, size_t, const char*, va_list);
|
|
extern "C" size_t vprintf(const char*, va_list);
|
|
extern "C" size_t printf(const char*, ...);
|
|
|
|
#endif /* MSL_COMMON_SRC_PRINTF_H */
|