shithub: plan9front

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