shithub: riscv

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