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