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