git: 9front

ref: 2e2969679331fd007141613d41f714da9e09a648
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;
}