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