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