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