shithub: plan9front

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