I know there are already some other questions and answers about parsing command line args in c, but I hope that somebody can tell me why my code is not working. Here's my code. I want to parse my arguments without external headers like getopt.h /(unistd.h) or args.h
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void showUsage(char *prog) {
printf("Usage for %s...", prog);
}
int main(int argc, char *argv[]) {
if (argc == 1) {
showUsage(argv[0]);
return EXIT_FAILURE;
}
int c;
char *input, *output;
for (c = 0; c < argc; ++c) {
if (strcmp((char *)argv[c], "-i")) {
input = (char *)argv[c + 1];
}
if (strcmp((char *)argv[c], "-o")) {
output = (char *)argv[c + 1];
}
}
printf("\nInput %s Output: %s", input, output);
return EXIT_SUCCESS;
}
The following code I have been using for years to parse unix-style command line switches. Adapt as needed: