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