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