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