shithub: riscv

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