shithub: plan9front

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