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