shithub: purgatorio

ref: 3866717cbb020199d58171c1c0cdd7382a74ee82
dir: purgatorio/lib9/runestrlen.c

View raw version
#include "lib9.h"


long
runestrlen(Rune *s)
{
	int i;

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