shithub: riscv

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