/*----------------------------------------------------- Declaration of Opts struct for command line options Generated by aargh 1.1.3 Sun Feb 12 10:05:58 2006 -----------------------------------------------------*/ #ifndef OPTS_H_GUARD #define OPTS_H_GUARD struct Opts { int new_argc; char ** new_argv; char * infile; int infile_found; unsigned long counter; int counter_found; int verbose; }; typedef struct Opts Opts; #ifdef __cplusplus extern "C" { #endif int get_Opts( int argc, char * argv[], Opts * pOpts ); #ifdef __cplusplus }; #endif #endif