git: 9front

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