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