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