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