shithub: plan9front

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