shithub: riscv

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