shithub: riscv

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