shithub: riscv

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