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