shithub: riscv

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