shithub: riscv

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