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