#include #include "options.h" const bool VERBOSE = false; using namespace std; struct Answer { const char* argv[8]; int result; const char* systemSearchPath[8]; const char* localSearchPath[8]; const char* inputFileName; language_t nativeLanguage; const char* outputH; const char* outputCPP; const char* outputJava; }; bool match_arrays(const char* const*expected, const vector &got) { int count = 0; while (expected[count] != NULL) { count++; } if (got.size() != count) { return false; } for (int i=0; i &got) { size_t count = got.size(); for (size_t i=0; i