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