shithub: riscv

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