shithub: riscv

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