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