shithub: riscv

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