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