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