shithub: riscv

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