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