shithub: riscv

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