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