git: 9front

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