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