shithub: riscv

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