shithub: riscv

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