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