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