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