git: 9front

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