4 command line parser interface -- generated by clig
5 (http://wsd.iitb.fhg.de/~geg/clighome/)
7 The command line parser `clig':
8 (C) 1995-2004 Harald Kirsch (clig@geggus.net)
11 typedef struct s_Cmdline
{
12 /***** --blr: <base-filename> <local-filename> <remote-filename>
13 Try a full (base->local to remote) merge */
17 /***** -o: <output_file>
18 Store the mx3d result onto the specified file */
22 /***** --hashcmp: <line1> <line2> ... <lineN>
23 Do a hash compare between 4 or more lines. */
27 /***** -v: be verbose, output debug information */
29 /***** --test-plugin: try to load the split-lines plugin */
31 /***** --help: show usage information */
33 /***** uninterpreted command line parameters */
36 /***** the whole command line concatenated */
42 extern void usage(void);
43 extern /*@shared*/Cmdline
*parseCmdline(int argc
, char **argv
);