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