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