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