shithub: riscv

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