mirror of
https://github.com/zeldaret/mm.git
synced 2026-06-08 04:07:05 -04:00
Sort boot files (#260)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
@@ -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, ...) {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user