ref: 20f2add592f8463ef6820afd07a342acb26da304 dir: /sys/src/libc/port/strlen.c/
#include <u.h> #include <libc.h> long strlen(char *s) { return strchr(s, 0) - s; }