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