ref: 385ecf9c11ba7114801e877090951e1785698051 dir: /libkern/strlen.c/
#include <u.h> #include "kern.h" long strlen(char *s) { return strchr(s, 0) - s; }