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