OK printSub__14JUTDirectPrintFUsUsPCcP16__va_list_structb

This commit is contained in:
Julgodis
2021-09-25 21:03:04 +02:00
parent bdd2374f15
commit 4160ed8fef
4 changed files with 46 additions and 14 deletions
+4
View File
@@ -3,6 +3,7 @@
#include "dolphin/types.h"
// TODO: move to MSL_C.PPCEABI.bare.H/
extern "C" {
void memcpy(void*, const void*, s32);
void* memset(void* dest, int ch, u32 count);
@@ -19,6 +20,9 @@ int tolower(int);
int sprintf(char*, const char*, ...);
int printf(const char*, ...);
int snprintf(char*, u32, const char*, ...);
struct __va_list_struct;
size_t vsnprintf(char* buffer, size_t buffer_size, const char* format, __va_list_struct* args);
}
#endif