code: purgatorio

ref: 3efb5bbb4061056e523858b134c555949591efe2
dir: /lib9/runestrlen.c/

View raw version
#include "lib9.h"


long
runestrlen(Rune *s)
{
	int i;

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