summaryrefslogtreecommitdiff
path: root/libkern/strlen.c
blob: 5cac06f2392587731fff8a8fe1deee6dc633f03b (plain)
1
2
3
4
5
6
7
8
#include <lib9.h>

long
strlen(char *s)
{

	return strchr(s, 0) - s;
}