shithub: riscv

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