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