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