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