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