shithub: riscv

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