Home | History | Annotate | Download | only in codesighs

Lines Matching defs:Switch

87 Switch;
91 static Switch gInputSwitch = {"--input", "-i", 1, NULL, "Specify input file." DESC_NEWLINE "stdin is default."};
92 static Switch gOutputSwitch = {"--output", "-o", 1, NULL, "Specify output file." DESC_NEWLINE "Appends if file exists." DESC_NEWLINE "stdout is default."};
93 static Switch gHelpSwitch = {"--help", "-h", 0, NULL, "Information on usage."};
95 static Switch* gSwitches[] = {
195 switch(*type)
213 switch(toupper(*type))
233 switch(*type)
287 Switch* current = NULL;
352 ERROR_REPORT(retval, inArgv[loop], "Unknown command line switch.");
358 ERROR_REPORT(retval, inArgv[loop], "Command line switch requires a value.");
422 ERROR_REPORT(retval, current->mLongName, "No handler for command line switch.");