shithub: riscv

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