git: 9front

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