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