forked from scottransom/presto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrealfft_cmd.h
45 lines (38 loc) · 1.2 KB
/
realfft_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
39
40
41
42
43
44
#ifndef __realfft_cmd__
#define __realfft_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 {
/***** -fwd: Force an forward FFT (sign=-1) to be performed */
char forwardP;
/***** -inv: Force an inverse FFT (sign=+1) to be performed */
char inverseP;
/***** -del: Delete the original file(s) when performing the FFT */
char deleteP;
/***** -disk: Force the use of the out-of-core memory FFT */
char diskfftP;
/***** -mem: Force the use of the in-core memory FFT */
char memfftP;
/***** -tmpdir: Scratch directory for temp file(s) in out-of-core FFT */
char tmpdirP;
char* tmpdir;
int tmpdirC;
/***** -outdir: Directory where result file(s) will reside */
char outdirP;
char* outdir;
int outdirC;
/***** 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