It was there in case of adding some "create" command options that should
be parsed before actually creating the output image. It seems we don't
need any at this point so let's drop this function for now.
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
* Create
**************************************************/
-static void otrx_create_parse_options(int argc, char **argv) {
-}
-
static ssize_t otrx_create_append_file(FILE *trx, const char *in_path) {
FILE *in;
size_t bytes;
}
trx_path = argv[2];
- optind = 3;
- otrx_create_parse_options(argc, argv);
-
trx = fopen(trx_path, "w+");
if (!trx) {
fprintf(stderr, "Couldn't open %s\n", trx_path);