summaryrefslogtreecommitdiffstats
path: root/crypt_args.h
blob: f0a0ca92f9c666c906218793d2ef481de23bd798 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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