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