This commit is contained in:
Your Name 2024-07-06 14:31:29 +03:00
parent 5d24364332
commit 715a7d070d
2 changed files with 17 additions and 16 deletions

View file

@ -1,7 +1,7 @@
#ifndef _UTF8_STRLEN
#define _UTF8_STRLEN
size_t utf8_strlen(const char *s) {
size_t mu_strlen(const char *s) {
size_t i = 0;
while (*s++)