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