git: 9front

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