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