Sort boot files (#260)

This commit is contained in:
Tharo
2021-08-11 03:15:31 +01:00
committed by GitHub
parent 9333306738
commit 82cc274b6a
85 changed files with 213 additions and 176 deletions
-18
View File
@@ -1,18 +0,0 @@
#include "global.h"
/*
* Compare strings (strcmp).
*/
s32 __osMemcmp(const char* str1, const char* str2) {
char currentCharStr1;
char currentCharStr2;
do {
currentCharStr1 = *str1++;
currentCharStr2 = *str2++;
if (currentCharStr1 != currentCharStr2) {
return currentCharStr1 - currentCharStr2;
}
} while (currentCharStr1);
return 0;
}
+6 -5
View File
@@ -1,10 +1,11 @@
#include "global.h"
// This file contains print functions that are used by fault.c, so they are placed in the fault module
// This isn't a vprintf since it doesn't take a va_list
void __osSyncVPrintf(const char* fmt, ...) {
}
void __osSyncVPrintf(UNK_TYPE4 param_1, ...) {
void osSyncPrintf(const char* fmt, ...) {
}
void osSyncPrintf(char* str, ...) {
}
void rmonPrintf(UNK_TYPE4 param_1, ...) {
void rmonPrintf(const char* fmt, ...) {
}