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