shithub: riscv

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