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