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