shithub: riscv

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