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