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