blob: b0a9d0096fa87fc50f04a612e403dfa90df8ee1a (
plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
/*
* Copyright (C) 2007-2008 Andreas Steffen
*
* Hochschule fuer Technik Rapperswil
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* 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 GNU General Public License
* for more details.
*/
/**
* @defgroup optionsfrom optionsfrom
* @{ @ingroup utils
*/
#ifndef OPTIONSFROM_H_
#define OPTIONSFROM_H_
typedef struct options_t options_t;
/**
* Reads additional command line arguments from a file
*/
struct options_t {
/**
* Check if the PKCS#7 contentType is data
*
* @param filename file containing the options
* @param argcp pointer to argc
* @param argvp pointer to argv[]
* @param optind current optind, number of next argument
* @return TRUE if optionsfrom parsing successful
*/
bool (*from) (options_t * this, char *filename,
int *argcp, char **argvp[], int optind);
/**
* Destroys the options_t object.
*/
void (*destroy) (options_t *this);
};
/**
* Create an options object.
*
* @return created options_t object
*/
options_t *options_create(void);
#endif /** OPTIONSFROM_H_ @}*/
|