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