shithub: riscv

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