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