shithub: riscv

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