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