shithub: riscv

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