#include "mu_strlen.h" size_t mu_strlen(const char *s) { size_t i = 0; while (*s++) i += (*s & 0xC0) != 0x80; return i; }