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