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