shithub: riscv

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