code: 9ferno

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

View raw version
#include "lib9.h"


long
runestrlen(Rune *s)
{
	int i;

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