code: 9ferno

ref: 3384fa1a04ee7075b6c77bd2f0624295d82b0341
dir: /lib9/runestrlen.c/

View raw version
#include "lib9.h"


long
runestrlen(Rune *s)
{
	int i;

	i = 0;
	while(*s++)
		i++;
	return i;
}