code: purgatorio

ref: 5611a46d8fb04ec3fd60c05a1486743cea98a311
dir: /lib9/runestrlen.c/

View raw version
#include "lib9.h"


long
runestrlen(Rune *s)
{
	int i;

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