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