git: 9front

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