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