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