shithub: purgatorio

ref: e11c7aa718df592bd69de53ce1d6498cc870f256
dir: purgatorio/lib9/runestrlen.c

View raw version
#include "lib9.h"


long
runestrlen(Rune *s)
{
	int i;

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