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