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