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