shithub: riscv

ref: 8677db333a11de80971df3e60f787b72b45a568c
dir: /sys/src/ape/lib/ap/gen/strlen.c/

View raw version
#include <string.h>

size_t
strlen(const char *s)
{

	return strchr(s, 0) - s;
}