shithub: riscv

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