git: 9front

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