shithub: riscv

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