git: 9front

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