git: 9front

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