shithub: plan9front

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