shithub: riscv

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