git: 9front

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