shithub: riscv

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