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