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