mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 23:05:36 -04:00
589cc12296
* wip * bunch of MSL_C files thanks to pikmin2 decomp for their work * format / asm * progress * fix * fix remove-asm to work with C files * init / start
22 lines
469 B
C
22 lines
469 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"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
size_t sprintf(const char*, const char*, ...);
|
|
size_t snprintf(const char*, size_t, const char*, ...);
|
|
size_t vsnprintf(char*, size_t, const char*, va_list);
|
|
size_t vprintf(const char*, va_list);
|
|
size_t printf(const char*, ...);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* MSL_COMMON_SRC_PRINTF_H */
|