micro-utils/include/libmu/utf8_strlen.h
2024-07-01 13:23:00 +03:00

14 lines
159 B
C

#ifndef _UTF8_STRLEN
#define _UTF8_STRLEN
size_t utf8_strlen(const char *s) {
size_t i = 0;
while (*s++)
i += (*s & 0xC0) != 0x80;
return i;
}
#endif