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