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