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