shithub: plan9front

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