shithub: riscv

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