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