shithub: riscv

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