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