shithub: riscv

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