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