shithub: riscv

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