shithub: riscv

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