git: 9front

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