git: 9front

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