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