code: 9ferno

ref: 0cb5f1d1ba2e5570e22f00039bdc9c7006e7158b
dir: /lib9/runestrlen.c/

View raw version
#include "lib9.h"


long
runestrlen(Rune *s)
{
	int i;

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