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