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