shithub: plan9front

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