shithub: riscv

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