git: 9front

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