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