code: 9ferno

ref: c11957a7915d355d80ff7e6a21721ba05441ca29
dir: /libkern/strlen.c/

View raw version
#include <lib9.h>

long
strlen(char *s)
{

	return strchr(s, 0) - s;
}