1
0
Fork 0
mirror of https://git.tukaani.org/xz.git synced 2024-04-04 12:36:23 +02:00
xz-archive/src/xz/args.h

45 lines
1.1 KiB
C
Raw Normal View History

2007-12-08 23:42:33 +01:00
///////////////////////////////////////////////////////////////////////////////
//
/// \file args.h
/// \brief Argument parsing
//
// Author: Lasse Collin
2007-12-08 23:42:33 +01:00
//
// This file has been put into the public domain.
// You can do whatever you want with this file.
2007-12-08 23:42:33 +01:00
//
///////////////////////////////////////////////////////////////////////////////
typedef struct {
/// Filenames from command line
char **arg_names;
2007-12-08 23:42:33 +01:00
/// Number of filenames from command line
unsigned int arg_count;
2007-12-08 23:42:33 +01:00
/// Name of the file from which to read filenames. This is NULL
/// if --files or --files0 was not used.
char *files_name;
2007-12-08 23:42:33 +01:00
/// File opened for reading from which filenames are read. This is
/// non-NULL only if files_name is non-NULL.
FILE *files_file;
/// Delimiter for filenames read from files_file
char files_delim;
} args_info;
2007-12-08 23:42:33 +01:00
extern bool opt_stdout;
extern bool opt_force;
extern bool opt_keep_original;
// extern bool opt_recursive;
extern bool opt_robot;
2014-08-05 21:32:36 +02:00
extern bool opt_ignore_check;
2007-12-08 23:42:33 +01:00
extern const char stdin_filename[];
2007-12-08 23:42:33 +01:00
extern void args_parse(args_info *args, int argc, char **argv);
extern void args_free(void);