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