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