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