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