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