shithub: riscv

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