shithub: riscv

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