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