shithub: riscv

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