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