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