git: 9front

ref: 1499cd86d9b759917f56a1c4b2af10a99e082207
dir: /sys/src/libc/port/strlen.c/

View raw version
#include <u.h>
#include <libc.h>

long
strlen(char *s)
{

	return strchr(s, 0) - s;
}