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