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