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