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