shithub: riscv

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