shithub: riscv

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