ref: e43e3872b43d9c1b49e9e5c015b32258c3735ad8
dir: /tests/libc/execute/0018-strlen.c/
#include <assert.h> #include <stdio.h> #include <string.h> /* output: testing done end: */ int main() { puts("testing"); assert(strlen("01234") == 5); assert(strlen("") == 0); puts("done"); return 0; }