git: 9front

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