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