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