code: 9ferno

ref: d8c61f908588654efc97a1c33f31e400607285bd
dir: /lib9/runestrlen.c/

View raw version
#include "lib9.h"


long
runestrlen(Rune *s)
{
	int i;

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