This commit is contained in:
Guilhem Lavaux 2010-09-15 20:43:23 +02:00
parent 4d4d27e86b
commit 0ca75f1846
7 changed files with 1468 additions and 28 deletions

View file

@ -1,6 +1,6 @@
/** @file zobovConf.h
* @brief The header file for the command line option parser
* generated by GNU Gengetopt version 2.22
* generated by GNU Gengetopt version 2.22.2
* http://www.gnu.org/software/gengetopt.
* DO NOT modify this file, since it can be overwritten
* @author GNU Gengetopt by Lorenzo Bettini */
@ -20,10 +20,15 @@ extern "C" {
#endif /* __cplusplus */
#ifndef ZOBOVCONF_PACKAGE
/** @brief the program name */
/** @brief the program name (used for printing errors) */
#define ZOBOVCONF_PACKAGE "showZobov"
#endif
#ifndef ZOBOVCONF_PACKAGE_NAME
/** @brief the complete program name (used for help and version) */
#define ZOBOVCONF_PACKAGE_NAME "showZobov"
#endif
#ifndef ZOBOVCONF_VERSION
/** @brief the program version */
#define ZOBOVCONF_VERSION "0"
@ -214,7 +219,7 @@ void zobovConf_free (struct zobovConf_info *args_info);
* @return 0 if everything went fine, NON 0 if an error took place
* @deprecated use zobovConf_config_file() instead
*/
int zobovConf_configfile (char * const filename,
int zobovConf_configfile (const char *filename,
struct zobovConf_info *args_info,
int override, int initialize, int check_required);
@ -225,7 +230,7 @@ int zobovConf_configfile (char * const filename,
* @param params additional parameters for the parser
* @return 0 if everything went fine, NON 0 if an error took place
*/
int zobovConf_config_file (char * const filename,
int zobovConf_config_file (const char *filename,
struct zobovConf_info *args_info,
struct zobovConf_params *params);