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