shithub: riscv

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