shithub: riscv

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