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