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