shithub: riscv

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