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