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