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