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