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