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