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