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