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