diff options
author | scnorton <scnorton@biociphers.org> | 2017-09-20 11:25:46 -0400 |
---|---|---|
committer | scnorton <scnorton@biociphers.org> | 2017-09-20 11:25:46 -0400 |
commit | 0895d8d861ca7db6d8fa2910f6275eb6b615340e (patch) | |
tree | ed0407f270cdb6a107d1f0c5a2e156faa30a7a1f /src | |
parent | 0b81c2920aa87aae3403efdf60e40b58445efbbf (diff) |
sub_818E258
Diffstat (limited to 'src')
-rw-r--r-- | src/lilycove_lady.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lilycove_lady.c b/src/lilycove_lady.c index 196867369..564b089a6 100644 --- a/src/lilycove_lady.c +++ b/src/lilycove_lady.c @@ -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; +} |