code: 9ferno

ref: 8eca9474c47d3898aa44e8e1879eda8a77fa6194
dir: /lib9/runestrlen.c/

View raw version
#include "lib9.h"


long
runestrlen(Rune *s)
{
	int i;

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