git: 9front

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