shithub: riscv

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