shithub: riscv

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