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