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