shithub: riscv

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