git: 9front

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