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