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