sub_818E258

This commit is contained in:
scnorton
2017-09-20 11:25:46 -04:00
parent 0b81c2920a
commit 0895d8d861
2 changed files with 9 additions and 20 deletions

View File

@@ -548,3 +548,12 @@ u8 sub_818E1F4(void)
}
return response;
}
u8 sub_818E258(const u8 *str)
{
u8 len;
const u8 *ptr;
for (len = 0, ptr = str; *ptr != EOS; len ++, ptr ++);
return len;
}