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