git: 9front

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