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