{
{ "help", no_argument, NULL, 'h' },
{ "version", no_argument, NULL, 'V' },
+ { "output", required_argument, NULL, 'o' },
{ "zversion", required_argument, NULL, ZVERSION },
{ "zorkid", required_argument, NULL, ZORKID },
{ "serial", required_argument, NULL, ZSERIAL },
{ NULL, 0, NULL, 0 }
-
};
struct
int main(int argc, char *argv[], char *envp[])
{
+ const char *output_file = NULL;
+
fill_config();
int opt = 0;
- while ((opt = getopt_long (argc, argv, "hV", long_options, NULL)) != -1)
+ while ((opt = getopt_long (argc, argv, "hVo:", long_options, NULL)) != -1)
{
switch(opt)
{
print_usage(0);
case 'V' :
print_version();
+ case 'o' :
+ if (output_file) wrong_arg("Output file must be given once\n");
+ output_file = argv[optind];
+ break;
case ZVERSION:
parse_intarg(&Config.zversion, "zversion", 1, 8, 1);
break;
// TODO: Everything :)
+ printf("Output file: %s\n\n", output_file ? output_file : "MISSING");
+
printf("Config:\n"
"- ZVersion: %d\n"
"- ZorkID: %d\n"