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