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