shithub: riscv

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