shithub: riscv

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