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