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