git: 9front

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