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