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