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