shithub: front

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