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