shithub: riscv

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