code: 9ferno

ref: 98540c6b29cdeb659849f5b61e0b19c242b94365
dir: /libkern/strlen.c/

View raw version
#include <lib9.h>

long
strlen(char *s)
{

	return strchr(s, 0) - s;
}