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