shithub: riscv

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