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