shithub: riscv

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