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