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