shithub: riscv

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