shithub: riscv

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