git: 9front

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