git: 9front

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