shithub: plan9front

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