git: 9front

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