shithub: riscv

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