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