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