shithub: riscv

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