code: 9ferno

ref: 72db5b394c55a4fecc11f7af3faad04b5bc755ba
dir: /lib9/runestrlen.c/

View raw version
#include "lib9.h"


long
runestrlen(Rune *s)
{
	int i;

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