shithub: plan9front

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