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