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