shithub: riscv

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