shithub: riscv

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