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