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