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