code: purgatorio

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

View raw version
#include "lib9.h"


long
runestrlen(Rune *s)
{
	int i;

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