shithub: riscv

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