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