shithub: riscv

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