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