shithub: riscv

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