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