shithub: riscv

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