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