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