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