git: 9front

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