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