ref: 83246e296ea433b65b9d295b5e08fedd39ff1ab7 dir: /lib9/runestrlen.c/
#include "lib9.h" long runestrlen(Rune *s) { int i; i = 0; while(*s++) i++; return i; }