shithub: riscv

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