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