code: purgatorio

ref: 02ac617541ca1a7bf82b1615fb5a58235469b5d3
dir: /lib9/runestrlen.c/

View raw version
#include "lib9.h"


long
runestrlen(Rune *s)
{
	int i;

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