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