code: 9ferno

ref: 993e7fa4d1dbea75626ba7691cabc4090880038e
dir: /libkern/strlen.c/

View raw version
#include <lib9.h>

long
strlen(char *s)
{

	return strchr(s, 0) - s;
}