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