shithub: riscv

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