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