shithub: riscv

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