shithub: riscv

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