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