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