shithub: riscv

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