shithub: riscv

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