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