git: 9front

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