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