shithub: riscv

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