code: purgatorio

ref: e17484e9d82ce7db8472e6abfa71144ddc184ce4
dir: /lib9/runestrlen.c/

View raw version
#include "lib9.h"


long
runestrlen(Rune *s)
{
	int i;

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