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