ref: fe5d1976a0b4376c955ca8423eb9005f5d035403 dir: /sys/src/libc/port/strlen.c/
#include <u.h> #include <libc.h> long strlen(char *s) { return strchr(s, 0) - s; }