shithub: riscv

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