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