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