git: 9front

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