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