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