shithub: riscv

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