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