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