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