code: purgatorio

ref: 43de7b8419fa3582af6df803473ef1bde2ce5c23
dir: /lib9/runestrlen.c/

View raw version
#include "lib9.h"


long
runestrlen(Rune *s)
{
	int i;

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