shithub: riscv

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