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