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