git: 9front

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