shithub: plan9front

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