shithub: riscv

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