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