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