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