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