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