git: 9front

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