mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-12 21:14:38 -04:00
0e281cb975
* cleanup various TUs * checkpoint * d_attention doc
53 lines
1022 B
C++
53 lines
1022 B
C++
//
|
|
// Generated By: dol2asm
|
|
// Translation Unit: locale
|
|
//
|
|
|
|
#include "JSystem/JMessage/locale.h"
|
|
#include <dolphin.h>
|
|
|
|
//
|
|
// Forward References:
|
|
//
|
|
|
|
extern "C" void parseCharacter_ShiftJIS__Q28JMessage6localeFPPCc();
|
|
extern "C" void parseCharacter_UTF8__Q28JMessage6localeFPPCc();
|
|
|
|
//
|
|
// External References:
|
|
//
|
|
|
|
//
|
|
// Declarations:
|
|
//
|
|
|
|
/* 802A9528-802A958C 2A3E68 0064+00 0/0 1/0 0/0 .text
|
|
* parseCharacter_ShiftJIS__Q28JMessage6localeFPPCc */
|
|
// NONMATCHING
|
|
int JMessage::locale::parseCharacter_ShiftJIS(char const** str) {
|
|
int c;
|
|
int ret;
|
|
u8* temp_r4_2;
|
|
u8* temp_r5;
|
|
|
|
temp_r5 = (u8*)*str;
|
|
c = *temp_r5;
|
|
ret = c;
|
|
|
|
*str = *str + 1;
|
|
|
|
if (isLeadByte_ShiftJIS(c)) {
|
|
temp_r4_2 = (u8*)*str;
|
|
ret = (c << 8) | *temp_r4_2;
|
|
*str = *str + 1;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
/* 802A958C-802A968C 2A3ECC 0100+00 0/0 1/0 0/0 .text parseCharacter_UTF8__Q28JMessage6localeFPPCc
|
|
*/
|
|
int JMessage::locale::parseCharacter_UTF8(char const** param_0) {
|
|
// NONMATCHING
|
|
}
|