shithub: riscv

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