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