git: 9front

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