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