shithub: riscv

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