shithub: riscv

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