code: 9ferno

ref: 82841b8f5f7600127bf16d4768f690617ec041f0
dir: /lib9/runestrlen.c/

View raw version
#include "lib9.h"


long
runestrlen(Rune *s)
{
	int i;

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