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