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