shithub: riscv

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