git: 9front

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