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