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