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