shithub: riscv

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