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