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