/** * A simple experiment to help us understand how `getopt_long` functions. */ // +---------+------------------------------------------------------- // | Headers | // +---------+ #include #include // +-----------+----------------------------------------------------- // | Utilities | // +-----------+ // +------+---------------------------------------------------------- // | Main | // +------+ int main (int argc, char *argv[]) { // And we're done return 0; } // main