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