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