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