shithub: riscv

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