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