code: 9ferno

ref: c6c1b7307d94a9f49610de276739cb35cf76772c
dir: /libkern/runestrlen.c/

View raw version
#include "lib9.h"


long
runestrlen(Rune *s)
{
	int i;

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