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