mirror of
https://github.com/projectPiki/pikmin2.git
synced 2024-12-01 01:00:33 +00:00
24 lines
471 B
C
24 lines
471 B
C
#ifndef _PRINTF_H
|
|
#define _PRINTF_H
|
|
|
|
#include "Dolphin/stdarg.h"
|
|
|
|
void sprintf(void);
|
|
void snprintf(void);
|
|
void vsnprintf(void);
|
|
void vfprintf(void);
|
|
void vprintf(const char* format, va_list arg);
|
|
void fprintf(void);
|
|
void printf(void);
|
|
void __StringWrite(void);
|
|
void __FileWrite(int, long, int);
|
|
void __pformatter(void);
|
|
void float2str(void);
|
|
void round_decimal(void);
|
|
void double2hex(void);
|
|
void longlong2str(void);
|
|
void long2str(void);
|
|
void parse_format(void);
|
|
|
|
#endif
|