shithub: riscv

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