// file: fbc_cmdl_0.C // // get command line for feedback cancellor // #include "fbc.h" int fbc_cmdl_0_C(char* output_file, char* input_file, float& sample_frequency, int& fft_num, float& frame_duration, float& window_duration, int argc, char** argv) { // check if a help option was specified on the command line // if (fbc_check_0_C(argc, argv) == L_TRUE) { return L_TRUE; } // fetch the values of the options // if (fbc_get_0_C(output_file, input_file, sample_frequency, fft_num, frame_duration, window_duration, argc, argv) == L_FALSE) { return L_FALSE; } // exit gracefully // return L_TRUE; }