diff options
Diffstat (limited to 'keygen_args.h')
-rw-r--r-- | keygen_args.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/keygen_args.h b/keygen_args.h new file mode 100644 index 0000000..c1144e5 --- /dev/null +++ b/keygen_args.h @@ -0,0 +1,16 @@ +#ifndef _KEYGEN_ARGS_ +#define _KEYGEN_ARGS_ + +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + +/* global variables */ +extern char *pubkey; +extern char *prikey; + +/* function protypes */ +int keygen_args(int, char **); + +#endif + |