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