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