/** @file cmdline.h * @brief The header file for the command line option parser * generated by GNU Gengetopt version 2.22.6 * http://www.gnu.org/software/gengetopt. * DO NOT modify this file, since it can be overwritten * @author GNU Gengetopt by Lorenzo Bettini */ #ifndef CMDLINE_H #define CMDLINE_H /* If we use autoconf. */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include <stdio.h> /* for FILE */ #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ #ifndef CMDLINE_PARSER_PACKAGE /** @brief the program name (used for printing errors) */ #define CMDLINE_PARSER_PACKAGE PACKAGE #endif #ifndef CMDLINE_PARSER_PACKAGE_NAME /** @brief the complete program name (used for help and version) */ #ifdef PACKAGE_NAME #define CMDLINE_PARSER_PACKAGE_NAME PACKAGE_NAME #else #define CMDLINE_PARSER_PACKAGE_NAME PACKAGE #endif #endif #ifndef CMDLINE_PARSER_VERSION /** @brief the program version */ #define CMDLINE_PARSER_VERSION VERSION #endif /** @brief Where the command line options are stored */ struct gengetopt_args_info { const char *help_help; /**< @brief Print help and exit help description. */ const char *detailed_help_help; /**< @brief Print help, including all details and hidden options, and exit help description. */ const char *version_help; /**< @brief Print version and exit help description. */ char * input_arg; /**< @brief input file. default std input. */ char * input_orig; /**< @brief input file. default std input original value given at command line. */ const char *input_help; /**< @brief input file. default std input help description. */ char * output_arg; /**< @brief output file. default std output (when the third invocation form is used). If STDOUT is specified, the output is directed to standard output. */ char * output_orig; /**< @brief output file. default std output (when the third invocation form is used). If STDOUT is specified, the output is directed to standard output original value given at command line. */ const char *output_help; /**< @brief output file. default std output (when the third invocation form is used). If STDOUT is specified, the output is directed to standard output help description. */ char * src_lang_arg; /**< @brief source language (use --lang-list to get the complete list). If not specified, the source language will be guessed from the file extension.. */ char * src_lang_orig; /**< @brief source language (use --lang-list to get the complete list). If not specified, the source language will be guessed from the file extension. original value given at command line. */ const char *src_lang_help; /**< @brief source language (use --lang-list to get the complete list). If not specified, the source language will be guessed from the file extension. help description. */ const char *lang_list_help; /**< @brief list all the supported language and associated language definition file help description. */ const char *outlang_list_help; /**< @brief list all the supported output language and associated language definition file help description. */ char * out_format_arg; /**< @brief output format (use --outlang-list to get the complete list) (default='html'). */ char * out_format_orig; /**< @brief output format (use --outlang-list to get the complete list) original value given at command line. */