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