shithub: riscv

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