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