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