forked from scottransom/presto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrednoise_cmd.h
39 lines (32 loc) · 934 Bytes
/
rednoise_cmd.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifndef __rednoise_cmd__
#define __rednoise_cmd__
/*****
command line parser interface -- generated by clig
(http://wsd.iitb.fhg.de/~geg/clighome/)
The command line parser `clig':
(C) 1995-2004 Harald Kirsch ([email protected])
*****/
typedef struct s_Cmdline {
/***** -startwidth: The initial windowing size. */
char startwidthP;
int startwidth;
int startwidthC;
/***** -endwidth: The final windowing size. */
char endwidthP;
int endwidth;
int endwidthC;
/***** -endfreq: The highest frequency where the windowing increases. */
char endfreqP;
double endfreq;
int endfreqC;
/***** uninterpreted command line parameters */
int argc;
/*@null*/char **argv;
/***** the whole command line concatenated */
char *full_cmd_line;
} Cmdline;
extern char *Program;
extern void usage(void);
extern /*@shared*/Cmdline *parseCmdline(int argc, char **argv);
extern void showOptionValues(void);
#endif