-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoptions.h
40 lines (28 loc) · 1.21 KB
/
options.h
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
/*
This file is part of SystemConfidence.
Copyright (C) 2012, UT-Battelle, LLC.
This product includes software produced by UT-Battelle, LLC under Contract No.
DE-AC05-00OR22725 with the Department of Energy.
This program is free software; you can redistribute it and/or modify
it under the terms of the New BSD 3-clause software license (LICENSE).
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
LICENSE for more details.
For more information please contact the SystemConfidence developers at:
systemconfidence-info@googlegroups.com
*/
#ifndef HAVE_OPTIONS_H
#define HAVE_OPTIONS_H
#include "types.h"
/**************************************************************
* FUNCTION PROTOTYPES
**************************************************************/
/* set default arg values */
void setdefaults(test_p tst);
/* argument parsers */
void general_options(test_p tst, int argc, char *argv[]);
void parse_xdd_args(test_p tst, char *optarg, char *progname);
/* print help text */
void print_help(test_p tst, char *progname);
#endif /* HAVE_OPTIONS_H */