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