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