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