aboutsummaryrefslogtreecommitdiff
path: root/src/options.h
blob: bd6c139695d92297d36233e767327980f318d98d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef POTD_OPTIONS_H
#define POTD_OPTIONS_H 1

typedef enum opt_name {
    OPT_LOGFILE = 0, OPT_LOGLEVEL,

    OPT_MAX
} opt_name;


int options_cmdline(int argc, char **argv);

int getopt_used(opt_name on);

char *
getopt_str(opt_name on);

#endif