shithub: riscv

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