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