shithub: riscv

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