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