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