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