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