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