code: 9ferno

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

View raw version
#include "lib9.h"


long
runestrlen(Rune *s)
{
	int i;

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