ref: 823eea4c3d7da44cd4b2a27aa53cc16c7c67680b dir: /libc/runestrlen.c/
#include <u.h> #include <libc.h> long runestrlen(Rune *s) { return runestrchr(s, 0) - s; }