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