shithub: riscv

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