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