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