diff options
Diffstat (limited to 'crypt_args.h')
-rw-r--r-- | crypt_args.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/crypt_args.h b/crypt_args.h new file mode 100644 index 0000000..f0a0ca9 --- /dev/null +++ b/crypt_args.h @@ -0,0 +1,17 @@ +#ifndef _KEYGEN_ARGS_ +#define _KEYGEN_ARGS_ + +#include <cstdio> +#include <cstdlib> +#include <cstring> + +/* global variables */ +extern char *fname; +extern char *keyfname; +extern char *outfname; + +/* function protypes */ +int crypt_args(int, char **); + +#endif + |