git: 9front

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