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