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