ref: 63392be12a1a657419af2d2966995428721f18f3 dir: /libkern/strlen.c/
#include <lib9.h> long strlen(char *s) { return strchr(s, 0) - s; }