shithub: plan9front

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