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