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