shithub: riscv

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