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