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