// file: process_command_line.C // // the solution to homework assignment no. 1 // #include "./process_data.h" int process_command_line_C(char* output_file, char* input_file, char* param_file, int argc, char** argv) { // check if a help option was specified on the command line // if (check_for_help_C(argc, argv) == L_TRUE) { return L_TRUE; } // fetch the values of the options // if (get_option_values_C(output_file, input_file, param_file, argc, argv) == L_FALSE) { return L_FALSE; } // exit gracefully // return L_TRUE; }