shithub: riscv

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