-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommandLineArg.h
More file actions
62 lines (43 loc) · 1.23 KB
/
CommandLineArg.h
File metadata and controls
62 lines (43 loc) · 1.23 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#ifndef THREECRYPT_COMMANDLINEARG_H
#define THREECRYPT_COMMANDLINEARG_H
#include <SSC/CommandLineArg.h>
#include "Threecrypt.h"
#define R_ SSC_RESTRICT
SSC_BEGIN_C_DECLS
int
decrypt_argproc(const int, char** R_, const int, void* R_);
int
dump_argproc(const int, char** R_, const int, void* R_);
int
encrypt_argproc(const int, char** R_, const int, void* R_);
int
entropy_argproc(const int, char** R_, const int, void* R_);
int
help_argproc(const int, char** R_, const int, void* R_);
int
input_argproc(const int, char** R_, const int, void* R_);
int
iterations_argproc(const int, char** R_, const int, void* R_);
#ifdef PPQ_DRAGONFLY_V1_H
int
max_memory_argproc(const int, char** R_, const int, void* R_);
int
min_memory_argproc(const int, char** R_, const int, void* R_);
#endif
int
output_argproc(const int, char** R_, const int, void* R_);
#ifdef PPQ_DRAGONFLY_V1_H
int
pad_as_if_argproc(const int, char** R_, const int, void* R_);
int
pad_by_argproc(const int, char** R_, const int, void* R_);
int
pad_to_argproc(const int, char** R_, const int, void* R_);
int
use_memory_argproc(const int, char** R_, const int, void* R_);
int
use_phi_argproc(const int, char** R_, const int, void* R_);
#endif
SSC_END_C_DECLS
#undef R_
#endif /* ! */