shithub: riscv

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