shithub: riscv

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