aboutsummaryrefslogtreecommitdiff
path: root/gfsm/gfsm/src/programs/gfsmarcsort_cmdparser.h
diff options
context:
space:
mode:
authorBryan Jurish <mukau@users.sourceforge.net>2008-12-04 14:23:42 +0000
committerBryan Jurish <mukau@users.sourceforge.net>2008-12-04 14:23:42 +0000
commitb2394c4ae6c41d6f7a7dfbf7b2c2c3200c3c4992 (patch)
treebe0e9995576a695fb0eead5f4bc5aa9718f2e9a7 /gfsm/gfsm/src/programs/gfsmarcsort_cmdparser.h
parent6b81740cda47da83fe3dc8f1dbf53558fcd80d7c (diff)
+ added ./autogen.sh-generated stuff to SVN, for pd-extended auto-builds
- pkg-config autoconf macros e.g. PKG_CHECK_MODULES are missing on darwin + removed extraneous (non-library) gfsm/ subdirectories doc/, src/programs, tests/ + added a lot of UNUSED attributes to lighten the pd-extended autobuild logs a bit svn path=/trunk/externals/moocow/; revision=10421
Diffstat (limited to 'gfsm/gfsm/src/programs/gfsmarcsort_cmdparser.h')
-rw-r--r--gfsm/gfsm/src/programs/gfsmarcsort_cmdparser.h77
1 files changed, 0 insertions, 77 deletions
diff --git a/gfsm/gfsm/src/programs/gfsmarcsort_cmdparser.h b/gfsm/gfsm/src/programs/gfsmarcsort_cmdparser.h
deleted file mode 100644
index 29f5f6a..0000000
--- a/gfsm/gfsm/src/programs/gfsmarcsort_cmdparser.h
+++ /dev/null
@@ -1,77 +0,0 @@
-/* -*- Mode: C -*-
- *
- * File: gfsmarcsort_cmdparser.h
- * Description: Headers for command-line parser struct gengetopt_args_info.
- *
- * File autogenerated by optgen.perl version 0.06.
- *
- */
-
-#ifndef gfsmarcsort_cmdparser_h
-#define gfsmarcsort_cmdparser_h
-
-#ifdef __cplusplus
-extern "C" {
-#endif /* __cplusplus */
-
-/*
- * moocow: Never set PACKAGE and VERSION here.
- */
-
-struct gengetopt_args_info {
- int lower_flag; /* Sort by (lower,upper,target) [default]. (default=0). */
- int i_flag; /* Alias for -l (default=0). */
- int upper_flag; /* Sort by (upper,lower,target). (default=0). */
- int o_flag; /* Alias for '-u' (default=0). */
- int weight_flag; /* Sort by weight (ascending). (default=0). */
- int cost_flag; /* Alias for '-w' (default=0). */
- char * mode_arg; /* Sort by explicit mode string (overrides -l, -u, etc.) (default=). */
- int compress_arg; /* Specify compression level of output file. (default=-1). */
- char * output_arg; /* Specifiy output file (default=stdout). (default=-). */
-
- int help_given; /* Whether help was given */
- int version_given; /* Whether version was given */
- int lower_given; /* Whether lower was given */
- int i_given; /* Whether - was given */
- int upper_given; /* Whether upper was given */
- int o_given; /* Whether - was given */
- int weight_given; /* Whether weight was given */
- int cost_given; /* Whether cost was given */
- int mode_given; /* Whether mode was given */
- int compress_given; /* Whether compress was given */
- int output_given; /* Whether output was given */
-
- char **inputs; /* unnamed arguments */
- unsigned inputs_num; /* number of unnamed arguments */
-};
-
-/* read rc files (if any) and parse all command-line options in one swell foop */
-int cmdline_parser (int argc, char *const *argv, struct gengetopt_args_info *args_info);
-
-/* instantiate defaults from environment variables: you must call this yourself! */
-void cmdline_parser_envdefaults (struct gengetopt_args_info *args_info);
-
-/* read a single rc-file */
-void cmdline_parser_read_rcfile (const char *filename,
- struct gengetopt_args_info *args_info,
- int user_specified);
-
-/* read a single rc-file (stream) */
-void cmdline_parser_read_rc_stream (FILE *rcfile,
- const char *filename,
- struct gengetopt_args_info *args_info);
-
-/* parse a single option */
-int cmdline_parser_parse_option (char oshort, const char *olong, const char *val,
- struct gengetopt_args_info *args_info);
-
-/* print help message */
-void cmdline_parser_print_help(void);
-
-/* print version */
-void cmdline_parser_print_version(void);
-
-#ifdef __cplusplus
-}
-#endif /* __cplusplus */
-#endif /* gfsmarcsort_cmdparser_h */