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