shithub: riscv

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