shithub: plan9front

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