shithub: riscv

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