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