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