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