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