shithub: riscv

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