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