shithub: riscv

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