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