git: 9front

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