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