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