Fixed capitalization and msl library names

This commit is contained in:
Zen64
2022-03-19 22:31:05 -04:00
parent 4631ed596f
commit 3751b71c0a
269 changed files with 353 additions and 1276 deletions
+21
View File
@@ -0,0 +1,21 @@
#ifndef MSL_COMMON_SRC_STRING_H
#define MSL_COMMON_SRC_STRING_H
#include "dolphin/types.h"
extern "C" {
void* memcpy(void*, const void*, s32);
void* memset(void*, int, u32);
char* strrchr(const char*, int);
char* strchr(const char*, int);
int strncmp(const char*, const char*, u32);
int strcmp(const char*, const char*);
char* strcat(char*, const char*);
char* strncpy(char*, const char*, u32);
char* strcpy(char*, const char*);
u32 strlen(const char*);
int stricmp(const char*, const char*);
};
#endif /* MSL_COMMON_SRC_STRING_H */